Searched refs:sshbuf_get (Results 1 - 6 of 6) sorted by relevance

/freebsd-current/crypto/openssh/
H A Dsshbuf-getput-basic.c35 sshbuf_get(struct sshbuf *buf, void *v, size_t len) function
320 (r = sshbuf_get(buf, p, len)) != 0)
H A Dsshbuf.h145 int sshbuf_get(struct sshbuf *buf, void *v, size_t len);
H A Dchannels.c1494 if ((r = sshbuf_get(input, &s4_req.version, 1)) != 0 ||
1495 (r = sshbuf_get(input, &s4_req.command, 1)) != 0 ||
1496 (r = sshbuf_get(input, &s4_req.dest_port, 2)) != 0 ||
1497 (r = sshbuf_get(input, &s4_req.dest_addr, 4)) != 0) {
1656 if ((r = sshbuf_get(input, &dest_addr, addrlen)) != 0 ||
1657 (r = sshbuf_get(input, &dest_port, 2)) != 0) {
H A Dssh_namespace.h772 #define sshbuf_get Fssh_sshbuf_get macro
H A Dpacket.c2578 return sshbuf_get(ssh->state->incoming_packet, valp, len);
/freebsd-current/crypto/openssh/regress/unittests/sshbuf/
H A Dtest_sshbuf_getput_basic.c90 TEST_START("sshbuf_get");
91 ASSERT_INT_EQ(sshbuf_get(p1, d2, 4), 0);
97 TEST_START("sshbuf_get truncated");
98 r = sshbuf_get(p1, d2, 4);

Completed in 154 milliseconds