OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:authok
(Results
1 - 3
of
3
) sorted by relevancy
/src/crypto/external/bsd/openssh/dist/
auth-bsdauth.c
101
int
authok
;
local
112
authok
= auth_userresponse(authctxt->as, responses[0], 0);
114
debug3("bsdauth_respond: <%s> = <%d>", responses[0],
authok
);
116
return (
authok
== 0) ? -1 : 0;
monitor.c
1059
int r,
authok
;
local
1068
authok
= options.kbd_interactive_authentication &&
1071
debug3_f("<%s> = <%d>", response,
authok
);
1075
if ((r = sshbuf_put_u32(m,
authok
)) != 0)
1078
debug3_f("sending authenticated: %d",
authok
);
1084
return (
authok
!= 0);
1114
int
authok
;
local
1120
authok
= (options.kbd_interactive_authentication &&
1128
sshbuf_put_int(m,
authok
);
1130
debug3("%s: sending authenticated: %d", __func__,
authok
);
[
all
...]
monitor_wrap.c
1010
int r,
authok
;
local
1025
if ((r = sshbuf_get_u32(m, &
authok
)) != 0)
1029
return ((
authok
== 0) ? -1 : 0);
1074
int
authok
;
local
1087
authok
= sshbuf_get_int(&m);
1090
return ((
authok
== 0) ? -1 : 0);
Completed in 24 milliseconds
Indexes created Sat Jun 20 00:25:23 UTC 2026