Home
last modified time | relevance | path

Searched refs:sshpkt_put_cstring (Results 1 – 14 of 14) sorted by relevance

/external/openssh/
Dsshconnect2.c246 (r = sshpkt_put_cstring(ssh, "markus")) != 0 || in ssh_kex2()
422 (r = sshpkt_put_cstring(ssh, "ssh-userauth")) != 0 || in ssh_userauth2()
746 (r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 || in userauth_gssapi()
747 (r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 || in userauth_gssapi()
748 (r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 || in userauth_gssapi()
989 (r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 || in userauth_none()
990 (r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 || in userauth_none()
991 (r = sshpkt_put_cstring(ssh, authctxt->method->name)) != 0 || in userauth_none()
1015 (r = sshpkt_put_cstring(ssh, authctxt->server_user)) != 0 || in userauth_passwd()
1016 (r = sshpkt_put_cstring(ssh, authctxt->service)) != 0 || in userauth_passwd()
[all …]
Dauth2-chall.c267 (r = sshpkt_put_cstring(ssh, name)) != 0 || in send_userauth_info_request()
268 (r = sshpkt_put_cstring(ssh, instr)) != 0 || in send_userauth_info_request()
269 (r = sshpkt_put_cstring(ssh, "")) != 0 || /* language not used */ in send_userauth_info_request()
273 if ((r = sshpkt_put_cstring(ssh, prompts[i])) != 0 || in send_userauth_info_request()
Dclientloop.c479 (r = sshpkt_put_cstring(ssh, "keepalive@openssh.com")) != 0 || in server_alive_check()
1406 (r = sshpkt_put_cstring(ssh, "disconnected by user")) != 0 || in client_loop()
1407 (r = sshpkt_put_cstring(ssh, "")) != 0 || /* language tag */ in client_loop()
1666 (r = sshpkt_put_cstring(ssh, "tun@openssh.com")) != 0 || in client_request_tun_fwd()
1730 (r = sshpkt_put_cstring(ssh, "open failed")) != 0 || in client_input_channel_open()
1731 (r = sshpkt_put_cstring(ssh, "")) != 0 || in client_input_channel_open()
2212 (r = sshpkt_put_cstring(ssh, in client_input_hostkeys()
2302 if ((r = sshpkt_put_cstring(ssh, term != NULL ? term : "")) in client_session2_setup()
2345 if ((r = sshpkt_put_cstring(ssh, name)) != 0 || in client_session2_setup()
2346 (r = sshpkt_put_cstring(ssh, val)) != 0 || in client_session2_setup()
[all …]
Dauth2.c145 (r = sshpkt_put_cstring(ssh, msg)) != 0 || in userauth_send_banner()
146 (r = sshpkt_put_cstring(ssh, "")) != 0 || /* language, unused */ in userauth_send_banner()
209 (r = sshpkt_put_cstring(ssh, service)) != 0 || in input_service_request()
439 (r = sshpkt_put_cstring(ssh, methods)) != 0 || in userauth_finish()
Dchannels.c563 (r = sshpkt_put_cstring(ssh, in mux_remove_remote_forwardings()
566 (r = sshpkt_put_cstring(ssh, in mux_remove_remote_forwardings()
922 (r = sshpkt_put_cstring(ssh, type)) != 0 || in open_preamble()
962 (r = sshpkt_put_cstring(ssh, service)) != 0 || in channel_request_start()
1690 if ((r = sshpkt_put_cstring(ssh, remote_ipaddr)) != 0 || in channel_post_x11_listener()
1726 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0 || in port_open_helper()
1733 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0) { in port_open_helper()
1739 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0) { in port_open_helper()
1745 if ((r = sshpkt_put_cstring(ssh, c->path)) != 0 || in port_open_helper()
1753 if ((r = sshpkt_put_cstring(ssh, "")) != 0) { in port_open_helper()
[all …]
Dserverloop.c201 (r = sshpkt_put_cstring(ssh, "keepalive@openssh.com")) in client_alive_check()
721 (r = sshpkt_put_cstring(ssh, errmsg ? errmsg : "open failed")) != 0 || in server_input_channel_open()
722 (r = sshpkt_put_cstring(ssh, "")) != 0 || in server_input_channel_open()
Dpacket.h190 int sshpkt_put_cstring(struct ssh *ssh, const void *v);
Dpacket.c1830 (r = sshpkt_put_cstring(ssh, buf)) != 0 || in ssh_packet_send_debug()
1831 (r = sshpkt_put_cstring(ssh, "")) != 0 || in ssh_packet_send_debug()
2515 sshpkt_put_cstring(struct ssh *ssh, const void *v) in sshpkt_put_cstring() function
2729 (r = sshpkt_put_cstring(ssh, buf)) != 0 || in sshpkt_disconnect()
2730 (r = sshpkt_put_cstring(ssh, "")) != 0 || in sshpkt_disconnect()
Dnchan.c244 (r = sshpkt_put_cstring(ssh, "eow@openssh.com")) != 0 || in chan_send_eow2()
Dkex.c439 (r = sshpkt_put_cstring(ssh, "server-sig-algs")) != 0 || in kex_send_ext_info()
440 (r = sshpkt_put_cstring(ssh, algs)) != 0 || in kex_send_ext_info()
Dsession.c2400 if ((r = sshpkt_put_cstring(ssh, sig2name(WTERMSIG(status)))) != 0 || in session_exit_message()
2402 (r = sshpkt_put_cstring(ssh, "")) != 0 || in session_exit_message()
2403 (r = sshpkt_put_cstring(ssh, "")) != 0 || in session_exit_message()
Dauth2-pubkey.c269 (r = sshpkt_put_cstring(ssh, pkalg)) != 0 || in userauth_pubkey()
Dssh.c2101 (r = sshpkt_put_cstring(ssh, in ssh_session2()
Dsshd.c804 (r = sshpkt_put_cstring(ssh, "hostkeys-00@openssh.com")) != 0 ||