[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.81 and 1.82

version 1.81, 2001/01/19 15:55:10 version 1.82, 2001/01/21 19:05:46
Line 42 
Line 42 
 #include "includes.h"  #include "includes.h"
 RCSID("$OpenBSD$");  RCSID("$OpenBSD$");
   
   #include <openssl/rsa.h>
   #include <openssl/dsa.h>
   
 #include "ssh.h"  #include "ssh.h"
   #include "ssh1.h"
   #include "ssh2.h"
 #include "packet.h"  #include "packet.h"
 #include "xmalloc.h"  #include "xmalloc.h"
 #include "buffer.h"  #include "buffer.h"
 #include "uidswap.h"  #include "uidswap.h"
 #include "readconf.h"  #include "log.h"
 #include "servconf.h"  #include "misc.h"
   
 #include "channels.h"  #include "channels.h"
 #include "nchan.h"  #include "nchan.h"
 #include "compat.h"  #include "compat.h"
   #include "canohost.h"
 #include "ssh1.h"  
 #include "ssh2.h"  
   
 #include <openssl/rsa.h>  
 #include <openssl/dsa.h>  
 #include "key.h"  #include "key.h"
 #include "authfd.h"  #include "authfd.h"
   
Line 130 
Line 129 
   
 /* This is set to true if both sides support SSH_PROTOFLAG_HOST_IN_FWD_OPEN. */  /* This is set to true if both sides support SSH_PROTOFLAG_HOST_IN_FWD_OPEN. */
 static int have_hostname_in_open = 0;  static int have_hostname_in_open = 0;
   
   /* AF_UNSPEC or AF_INET or AF_INET6 */
   extern int IPv4or6;
   
 /* Sets specific protocol options. */  /* Sets specific protocol options. */
   

Legend:
Removed from v.1.81  
changed lines
  Added in v.1.82