[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.9 and 1.10

version 1.9, 2000/12/19 23:17:55 version 1.10, 2001/01/10 22:56:22
Line 30 
Line 30 
   
 /* Returns an integer from the buffer (4 bytes, msb first). */  /* Returns an integer from the buffer (4 bytes, msb first). */
 u_int buffer_get_int(Buffer * buffer);  u_int buffer_get_int(Buffer * buffer);
   u_int64_t buffer_get_int64(Buffer *buffer);
   
 /* Stores an integer in the buffer in 4 bytes, msb first. */  /* Stores an integer in the buffer in 4 bytes, msb first. */
 void    buffer_put_int(Buffer * buffer, u_int value);  void    buffer_put_int(Buffer * buffer, u_int value);
   void    buffer_put_int64(Buffer *buffer, u_int64_t value);
   
 /* Returns a character from the buffer (0 - 255). */  /* Returns a character from the buffer (0 - 255). */
 int     buffer_get_char(Buffer * buffer);  int     buffer_get_char(Buffer * buffer);

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10