[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.6 and 1.7

version 1.6, 1999/11/24 19:53:48 version 1.7, 1999/12/27 10:46:11
Line 144 
Line 144 
  * The error message should not contain a newline.  The total length of the   * The error message should not contain a newline.  The total length of the
  * message must not exceed 1024 bytes.   * message must not exceed 1024 bytes.
  */   */
 void    packet_disconnect(const char *fmt,...);  void    packet_disconnect(const char *fmt,...) __attribute__((format(printf, 1, 2)));;
   
 /*  /*
  * Sends a diagnostic message to the other side.  This message can be sent at   * Sends a diagnostic message to the other side.  This message can be sent at
Line 156 
Line 156 
  * remote side protocol flags do not indicate that it supports SSH_MSG_DEBUG,   * remote side protocol flags do not indicate that it supports SSH_MSG_DEBUG,
  * this will do nothing.   * this will do nothing.
  */   */
 void    packet_send_debug(const char *fmt,...);  void    packet_send_debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));;
   
 /* Checks if there is any buffered output, and tries to write some of the output. */  /* Checks if there is any buffered output, and tries to write some of the output. */
 void    packet_write_poll(void);  void    packet_write_poll(void);

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7