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

Diff for /src/usr.bin/ssh/Attic/bufaux.h between version 1.19 and 1.19.2.1

version 1.19, 2003/11/10 16:23:41 version 1.19.2.1, 2005/03/10 17:15:04
Line 42 
Line 42 
 #define buffer_skip_string(b) \  #define buffer_skip_string(b) \
     do { u_int l = buffer_get_int(b); buffer_consume(b, l); } while(0)      do { u_int l = buffer_get_int(b); buffer_consume(b, l); } while(0)
   
   int     buffer_put_bignum_ret(Buffer *, const BIGNUM *);
   int     buffer_get_bignum_ret(Buffer *, BIGNUM *);
   int     buffer_put_bignum2_ret(Buffer *, const BIGNUM *);
   int     buffer_get_bignum2_ret(Buffer *, BIGNUM *);
   int     buffer_get_short_ret(u_short *, Buffer *);
   int     buffer_get_int_ret(u_int *, Buffer *);
   int     buffer_get_int64_ret(u_int64_t *, Buffer *);
   void    *buffer_get_string_ret(Buffer *, u_int *);
   int     buffer_get_char_ret(char *, Buffer *);
   
 #endif                          /* BUFAUX_H */  #endif                          /* BUFAUX_H */

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.19.2.1