[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.53 and 1.54

version 1.53, 2010/08/31 09:58:37 version 1.54, 2010/08/31 11:54:45
Line 19 
Line 19 
 #include <termios.h>  #include <termios.h>
   
 #include <openssl/bn.h>  #include <openssl/bn.h>
   #include <openssl/ec.h>
   
 void     packet_set_connection(int, int);  void     packet_set_connection(int, int);
 void     packet_set_timeout(int, int);  void     packet_set_timeout(int, int);
Line 42 
Line 43 
 void     packet_put_int64(u_int64_t value);  void     packet_put_int64(u_int64_t value);
 void     packet_put_bignum(BIGNUM * value);  void     packet_put_bignum(BIGNUM * value);
 void     packet_put_bignum2(BIGNUM * value);  void     packet_put_bignum2(BIGNUM * value);
   void     packet_put_ecpoint(const EC_GROUP *, const EC_POINT *);
 void     packet_put_string(const void *buf, u_int len);  void     packet_put_string(const void *buf, u_int len);
 void     packet_put_cstring(const char *str);  void     packet_put_cstring(const char *str);
 void     packet_put_raw(const void *buf, u_int len);  void     packet_put_raw(const void *buf, u_int len);
Line 59 
Line 61 
 u_int64_t packet_get_int64(void);  u_int64_t packet_get_int64(void);
 void     packet_get_bignum(BIGNUM * value);  void     packet_get_bignum(BIGNUM * value);
 void     packet_get_bignum2(BIGNUM * value);  void     packet_get_bignum2(BIGNUM * value);
   void     packet_get_ecpoint(const EC_GROUP *, EC_POINT *);
 void    *packet_get_raw(u_int *length_ptr);  void    *packet_get_raw(u_int *length_ptr);
 void    *packet_get_string(u_int *length_ptr);  void    *packet_get_string(u_int *length_ptr);
 char    *packet_get_cstring(u_int *length_ptr);  char    *packet_get_cstring(u_int *length_ptr);

Legend:
Removed from v.1.53  
changed lines
  Added in v.1.54