Home | History | Annotate | Download | only in openssh

Lines Matching refs:ssh

5 void     ssh_packet_start(struct ssh *, u_char);
6 void ssh_packet_put_char(struct ssh *, int ch);
7 void ssh_packet_put_int(struct ssh *, u_int value);
8 void ssh_packet_put_int64(struct ssh *, u_int64_t value);
9 void ssh_packet_put_bignum(struct ssh *, BIGNUM * value);
10 void ssh_packet_put_bignum2(struct ssh *, BIGNUM * value);
11 void ssh_packet_put_ecpoint(struct ssh *, const EC_GROUP *, const EC_POINT *);
12 void ssh_packet_put_string(struct ssh *, const void *buf, u_int len);
13 void ssh_packet_put_cstring(struct ssh *, const char *str);
14 void ssh_packet_put_raw(struct ssh *, const void *buf, u_int len);
15 void ssh_packet_send(struct ssh *);
17 u_int ssh_packet_get_char(struct ssh *);
18 u_int ssh_packet_get_int(struct ssh *);
19 u_int64_t ssh_packet_get_int64(struct ssh *);
20 void ssh_packet_get_bignum(struct ssh *, BIGNUM * value);
21 void ssh_packet_get_bignum2(struct ssh *, BIGNUM * value);
22 void ssh_packet_get_ecpoint(struct ssh *, const EC_GROUP *, EC_POINT *);
23 void *ssh_packet_get_string(struct ssh *, u_int *length_ptr);
24 char *ssh_packet_get_cstring(struct ssh *, u_int *length_ptr);
27 #define ssh_packet_check_eom(ssh) \
29 int _len = ssh_packet_remaining(ssh); \
33 ssh_packet_disconnect(ssh, \