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

version 1.9, 2000/01/04 16:54:58 version 1.10, 2000/03/16 20:56:14
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,...) __attribute__((format(printf, 1, 2)));;  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,...) __attribute__((format(printf, 1, 2)));;  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.9  
changed lines
  Added in v.1.10