Files
KiTTY/kitty_ssh.h
T
2019-05-11 23:57:23 +02:00

12 lines
242 B
C

#ifndef KITTY_SSH
#define KITTY_SSH
#ifdef PORTKNOCKINGPORT
#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