Lines Matching defs:my
536 if ((r = kex_buf2prop(kex->my, NULL, &prop)) != 0)
547 if ((r = kex_prop2buf(ssh->kex->my, prop)) != 0) {
582 if (sshbuf_len(kex->my) < KEX_COOKIE_LEN) {
584 sshbuf_len(kex->my), KEX_COOKIE_LEN);
587 if ((cookie = sshbuf_mutable_ptr(kex->my)) == NULL) {
594 (r = sshpkt_putb(ssh, kex->my)) != 0 ||
671 (kex->my = sshbuf_new()) == NULL ||
728 sshbuf_free(kex->my);
746 if ((r = kex_prop2buf(ssh->kex->my, proposal)) != 0)
889 proposals_match(char *my[PROPOSAL_MAX], char *peer[PROPOSAL_MAX])
898 if ((p = strchr(my[*idx], ',')) != NULL)
902 if (strcmp(my[*idx], peer[*idx]) != 0) {
903 debug2("proposal mismatch: my %s peer %s",
904 my[*idx], peer[*idx]);
923 char **my = NULL, **peer = NULL;
930 if ((r = kex_buf2prop(kex->my, NULL, &my)) != 0)
938 sprop=my;
940 cprop=my;
1042 if (first_kex_follows && !proposals_match(my, peer))
1046 kex_prop_free(my);