Home | History | Annotate | Download | only in openssh

Lines Matching refs:ssh

6  * This program is the ssh daemon.  It listens for connections from clients,
16 * called by a name other than "ssh" or "Secure Shell".
89 #include "ssh.h"
121 #include "ssh-gss.h"
125 #include "ssh-sandbox.h"
434 xasprintf(&server_version_string, "SSH-%d.%d-%.100s%s%s%s",
459 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
475 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
525 packet_disconnect("Your ssh version is too old and "
849 get_hostkey_by_type(int type, int nid, int need_private, struct ssh *ssh)
877 get_hostkey_public_by_type(int type, int nid, struct ssh *ssh)
879 return get_hostkey_by_type(type, nid, 0, ssh);
883 get_hostkey_private_by_type(int type, int nid, struct ssh *ssh)
885 return get_hostkey_by_type(type, nid, 1, ssh);
897 get_hostkey_public_by_index(int ind, struct ssh *ssh)
905 get_hostkey_index(Key *key, int compare, struct ssh *ssh)
932 notify_hostkeys(struct ssh *ssh)
946 key = get_hostkey_public_by_index(i, ssh);
1727 "SSH protocol 1");