Displaying 3 results from an estimated 3 matches for "forwarding_success".
2023 Jan 25
1
Upstream forwarding test failure
On Wed, 25 Jan 2023 at 19:29, Darren Tucker <dtucker at dtucker.net> wrote:
[...]
> I have a part-done patch that logs the output from all ssh and sshd
> instances to separate datestamped files. I'll see if I can tidy that
> up for you to try
You can grab it from here:
https://github.com/daztucker/openssh-portable/commit/b54b39349e1a64cbbb9b56b0f8b91a35589fb528
It's not
2023 Jun 09
1
Question About Dynamic Remote Forwarding
...if (options.exit_on_forward_failure &&
options.num_remote_forwards > 0) {
debug("deferring postauth fork until remote forward "
"confirmation received");
} else
fork_postauth(ssh);
}
This seems to depend on forwarding_success() for it to then call
fork_postauth.
If I'm reading this correctly the client sends out a number of forward
requests which is tracked via forward_confirms_pending in ssh.c.
Is there any equivalent on the server side to track the number of
received requests?
I ask because I'm trying, f...
2023 Jun 10
1
Question About Dynamic Remote Forwarding
...amp;&
> options.num_remote_forwards > 0) {
> debug("deferring postauth fork until remote forward "
> "confirmation received");
> } else
> fork_postauth(ssh);
> }
>
>
> This seems to depend on forwarding_success() for it to then call
> fork_postauth.
>
> If I'm reading this correctly the client sends out a number of forward
> requests which is tracked via forward_confirms_pending in ssh.c.
>
> Is there any equivalent on the server side to track the number of received
> requests?...