This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 #ifndef _ip_h_
2 #define _ip_h_
3
4 typedef struct ip {
5         short a;
6         short b;
7         short c;
8         short d;
9 }ip_t;
10
11 unsigned int iptoMid(char *);
12 void midtoIP(unsigned int, char *);
13 int checkServer(int, char *);
14 unsigned int getMyIpAddr(const char *interfaceStr);
15
16 #endif