[BACK]Return to packet.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/packet.h between version 1.81 and 1.82

version 1.81, 2017/05/31 08:09:45 version 1.82, 2017/09/12 06:32:07
Line 66 
Line 66 
         /* Client/Server authentication context */          /* Client/Server authentication context */
         void *authctxt;          void *authctxt;
   
           /* Channels context */
           struct ssh_channels *chanctxt;
   
         /* APP data */          /* APP data */
         void *app_data;          void *app_data;
 };  };
Line 129 
Line 132 
   
 int      ssh_packet_connection_is_on_socket(struct ssh *);  int      ssh_packet_connection_is_on_socket(struct ssh *);
 int      ssh_packet_remaining(struct ssh *);  int      ssh_packet_remaining(struct ssh *);
 void     ssh_packet_send_ignore(struct ssh *, int);  
   
 void     tty_make_modes(int, struct termios *);  void     tty_make_modes(int, struct termios *);
 void     tty_parse_modes(int, int *);  void     tty_parse_modes(int, int *);
Line 160 
Line 162 
             __attribute__((format(printf, 2, 3)));              __attribute__((format(printf, 2, 3)));
 int     sshpkt_add_padding(struct ssh *, u_char);  int     sshpkt_add_padding(struct ssh *, u_char);
 void    sshpkt_fatal(struct ssh *ssh, const char *tag, int r);  void    sshpkt_fatal(struct ssh *ssh, const char *tag, int r);
   int     sshpkt_msg_ignore(struct ssh *, u_int);
   
 int     sshpkt_put(struct ssh *ssh, const void *v, size_t len);  int     sshpkt_put(struct ssh *ssh, const void *v, size_t len);
 int     sshpkt_putb(struct ssh *ssh, const struct sshbuf *b);  int     sshpkt_putb(struct ssh *ssh, const struct sshbuf *b);
Line 178 
Line 181 
 int     sshpkt_get_u64(struct ssh *ssh, u_int64_t *valp);  int     sshpkt_get_u64(struct ssh *ssh, u_int64_t *valp);
 int     sshpkt_get_string(struct ssh *ssh, u_char **valp, size_t *lenp);  int     sshpkt_get_string(struct ssh *ssh, u_char **valp, size_t *lenp);
 int     sshpkt_get_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp);  int     sshpkt_get_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp);
   int     sshpkt_peek_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp);
 int     sshpkt_get_cstring(struct ssh *ssh, char **valp, size_t *lenp);  int     sshpkt_get_cstring(struct ssh *ssh, char **valp, size_t *lenp);
 int     sshpkt_get_ec(struct ssh *ssh, EC_POINT *v, const EC_GROUP *g);  int     sshpkt_get_ec(struct ssh *ssh, EC_POINT *v, const EC_GROUP *g);
 int     sshpkt_get_bignum2(struct ssh *ssh, BIGNUM *v);  int     sshpkt_get_bignum2(struct ssh *ssh, BIGNUM *v);

Legend:
Removed from v.1.81  
changed lines
  Added in v.1.82