Files
KiTTY/kitty_ssh.h

12 lines
242 B
C

#ifndef KITTY_SSH
#define KITTY_SSH
#ifdef MOD_PORTKNOCKING
#define PROTO_TCP 1
#define PROTO_UDP 2
int knock( char *hostname, unsigned short port, unsigned short proto) ;
int ManagePortKnocking( char* host, char *portstr ) ;
#endif
#endif