[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.16 and 1.17

version 1.16, 2002/03/04 17:27:39 version 1.17, 2002/03/18 17:25:29
Line 36 
Line 36 
 void    buffer_put_string(Buffer *, const void *, u_int);  void    buffer_put_string(Buffer *, const void *, u_int);
 void    buffer_put_cstring(Buffer *, const char *);  void    buffer_put_cstring(Buffer *, const char *);
   
   #define buffer_skip_string(b) \
       do { u_int l = buffer_get_int(b); buffer_consume(b, l); } while(0)
   
 #endif                          /* BUFAUX_H */  #endif                          /* BUFAUX_H */

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17