Home
last modified time | relevance | path

Searched refs:mux_pause (Results 1 – 3 of 3) sorted by relevance

/external/openssh/
Dmux.c472 c->mux_pause = 1; /* stop handling messages until open_confirm done */ in process_mux_new_session()
653 if (c->mux_pause <= 0) in mux_confirm_remote_forward()
654 fatal("%s: mux_pause %d", __func__, c->mux_pause); in mux_confirm_remote_forward()
655 c->mux_pause = 0; /* start processing messages again */ in mux_confirm_remote_forward()
809 c->mux_pause = 1; /* wait for mux_confirm_remote_forward */ in process_mux_open_fwd()
1031 c->mux_pause = 1; /* stop handling messages until open_confirm done */ in process_mux_stdio_fwd()
1075 if (cc->mux_pause <= 0) in mux_stdio_confirm()
1076 fatal("%s: mux_pause %d", __func__, cc->mux_pause); in mux_stdio_confirm()
1077 cc->mux_pause = 0; /* start processing messages again */ in mux_stdio_confirm()
1390 if (cc->mux_pause <= 0) in mux_session_confirm()
[all …]
Dchannels.h164 int mux_pause; member
Dchannels.c356 c->mux_pause = 0; in channel_new()
1032 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause && in channel_pre_mux_client()
1921 if (c->rfd != -1 && !c->mux_pause && FD_ISSET(c->rfd, readset) &&