Searched refs:channels_alloc (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/crypto/openssh/
H A Dchannels.c161 u_int channels_alloc; member in struct:ssh_channels
236 sc->channels_alloc = 10;
237 sc->channels = xcalloc(sc->channels_alloc, sizeof(*sc->channels));
249 if (id < 0 || (u_int)id >= ssh->chanctxt->channels_alloc) {
267 for (i = 0; i < ssh->chanctxt->channels_alloc; i++) {
363 for (i = 0; i < sc->channels_alloc; i++) {
370 if (i >= sc->channels_alloc) {
375 found = sc->channels_alloc;
376 if (sc->channels_alloc > CHANNELS_MAX_CHANNELS)
377 fatal("%s: internal error: channels_alloc
[all...]

Completed in 111 milliseconds