[BACK]Return to channels.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/channels.c between version 1.49 and 1.50

version 1.49, 2000/04/14 10:30:30 version 1.50, 2000/04/16 16:40:43
Line 1465 
Line 1465 
                 packet_put_int(listen_port);                  packet_put_int(listen_port);
         } else {          } else {
                 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);                  packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
                 packet_put_int(port_to_connect);  
                 packet_put_cstring(host_to_connect);  
                 packet_put_int(listen_port);                  packet_put_int(listen_port);
                   packet_put_cstring(host_to_connect);
                   packet_put_int(port_to_connect);
                 packet_send();                  packet_send();
                 packet_write_wait();                  packet_write_wait();
                 /*                  /*

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50