Displaying 1 result from an estimated 1 matches for "kex_chose_conf".
2007 Nov 05
2
Logit function problems
I'm trying to collect some additional user information from the server
using the 'logit' function. For example, I'm trying to get the cipher,
mac, and compression status from kex.c in kex_chose_conf() with
logit("SSH: %s;Ltype: Kex;Enc: %s;MAC: %s:Comp: %s",
ctos ? "Server" : "Client",
newkeys->enc.name,
newkeys->mac.name,
newkeys->comp.name);
right after the similar debug statement. When I'm running the server in
debug mode this lin...