[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.90 and 1.91

version 1.90, 2019/01/21 10:35:09 version 1.91, 2019/09/06 05:23:55
Line 18 
Line 18 
   
 #include <termios.h>  #include <termios.h>
   
 #include <openssl/bn.h>  
 #include <openssl/ec.h>  
 #include <sys/signal.h>  #include <sys/signal.h>
 #include <sys/queue.h>  #include <sys/queue.h>
   
   #ifdef WITH_OPENSSL
   #include <openssl/bn.h>
   #include <openssl/ec.h>
   #include <openssl/ecdsa.h>
   #else /* OPENSSL */
   #define BIGNUM          void
   #define EC_GROUP        void
   #define EC_POINT        void
   #endif /* WITH_OPENSSL */
   
 struct kex;  struct kex;
 struct sshkey;  struct sshkey;

Legend:
Removed from v.1.90  
changed lines
  Added in v.1.91