Home | History | Annotate | Download | only in openssh

Lines Matching refs:resp

639 	struct sshbuf *resp = NULL;
647 if ((resp = sshbuf_new()) == NULL || (sigbuf = sshbuf_new()) == NULL)
687 (r = sshbuf_put_string(resp, sig, slen)) != 0) {
694 *respp = resp;
695 resp = NULL; /* don't free it */
699 sshbuf_free(resp);
711 struct sshbuf *resp = NULL;
745 if ((resp = sshbuf_new()) == NULL)
748 (r = sshbuf_put_u32(resp, allocated_listen_port)) != 0)
796 success = server_input_hostkeys_prove(&resp);
801 if (success && resp != NULL)
802 ssh_packet_put_raw(active_state, sshbuf_ptr(resp),
803 sshbuf_len(resp));
808 sshbuf_free(resp);