Displaying 2 results from an estimated 2 matches for "forward_confirms_pend".
2023 Jun 09
1
Question About Dynamic Remote Forwarding
...rd "
"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, for various reasons, to trigger a rekey on the
server side *after* the client forks in a dynamic remote forward
scenario. I know that the server can't actually kn...
2023 Jun 10
1
Question About Dynamic Remote Forwarding
...n 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, for various reasons, to trigger a rekey on the
> server side *after* the client forks in a dynamic remote forward scenario. I
> know that...