[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.22 and 1.23

version 1.22, 2001/04/14 16:33:20 version 1.23, 2001/05/28 23:58:35
Line 71 
Line 71 
 int     packet_is_interactive(void);  int     packet_is_interactive(void);
   
 /* Starts constructing a packet to send. */  /* Starts constructing a packet to send. */
 void    packet_start(int type);  void    packet_start(u_char type);
   
 /* Appends a character to the packet data. */  /* Appends a character to the packet data. */
 void    packet_put_char(int ch);  void    packet_put_char(int ch);
Line 207 
Line 207 
 /* remote host is connected via a socket/ipv4 */  /* remote host is connected via a socket/ipv4 */
 int     packet_connection_is_on_socket(void);  int     packet_connection_is_on_socket(void);
 int     packet_connection_is_ipv4(void);  int     packet_connection_is_ipv4(void);
   
 /* enable SSH2 packet format */  
 void    packet_set_ssh2_format(void);  
   
 /* returns remaining payload bytes */  /* returns remaining payload bytes */
 int     packet_remaining(void);  int     packet_remaining(void);

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23