OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:authok
(Results
1 - 3
of
3
) sorted by null
/external/openssh/
auth-bsdauth.c
94
int
authok
;
local
105
authok
= auth_userresponse(authctxt->as, responses[0], 0);
107
debug3("bsdauth_respond: <%s> = <%d>", responses[0],
authok
);
109
return (
authok
== 0) ? -1 : 0;
monitor_wrap.c
986
int
authok
;
local
999
authok
= buffer_get_int(&m);
1002
return ((
authok
== 0) ? -1 : 0);
1046
int
authok
;
local
1059
authok
= buffer_get_int(&m);
1062
return ((
authok
== 0) ? -1 : 0);
[
all
...]
monitor.c
912
int
authok
;
local
918
authok
= options.challenge_response_authentication &&
921
debug3("%s: <%s> = <%d>", __func__, response,
authok
);
925
buffer_put_int(m,
authok
);
927
debug3("%s: sending authenticated: %d", __func__,
authok
);
932
return (
authok
!= 0);
962
int
authok
;
local
966
authok
= (options.challenge_response_authentication &&
974
buffer_put_int(m,
authok
);
976
debug3("%s: sending authenticated: %d", __func__,
authok
);
[
all
...]
Completed in 527 milliseconds