| /src/crypto/external/bsd/openssh/dist/ |
| sshd-auth.c | 136 int auth_sock = -1; variable
|
| sshd-session.c | 174 int auth_sock = -1; variable 353 r = ssh_get_authentication_socket(&auth_sock);
|
| sshconnect.c | 1780 int auth_sock = -1, r; local 1786 if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) { 1794 close(auth_sock); 1799 if ((r = ssh_add_identity_constrained(auth_sock, private, 1806 close(auth_sock);
|
| /src/external/bsd/wpa/dist/src/radius/ |
| radius_client.c | 174 * auth_sock - Currently used socket for RADIUS authentication server 176 int auth_sock; member in struct:radius_client_data 420 if (radius->auth_sock < 0) 422 if (radius->auth_sock < 0 && conf->num_auth_servers > 1) { 428 s = radius->auth_sock; 566 s = entry->msg_type == RADIUS_AUTH ? radius->auth_sock : 793 if (radius->auth_sock >= 0) { 796 eloop_unregister_sock(radius->auth_sock, 799 eloop_unregister_read_sock(radius->auth_sock); 800 close(radius->auth_sock); [all...] |
| radius_server.c | 128 * auth_sock - Socket for RADIUS authentication messages 130 int auth_sock; member in struct:radius_server_data 1300 if (sendto(data->auth_sock, wpabuf_head(buf), wpabuf_len(buf), 0, 1415 res = sendto(data->auth_sock, wpabuf_head(buf), 1526 res = sendto(data->auth_sock, wpabuf_head(buf), 2215 data->auth_sock = -1; 2278 data->auth_sock = radius_server_open_socket6(conf->auth_port); 2281 data->auth_sock = radius_server_open_socket(conf->auth_port); 2282 if (data->auth_sock < 0) { 2286 if (eloop_register_read_sock(data->auth_sock, [all...] |