| 9 |
9 |
| 10 const char * |
10 const char * |
| 11 gaim_network_get_my_ip(fd) |
11 gaim_network_get_my_ip(fd) |
| 12 int fd |
12 int fd |
| 13 |
13 |
| 14 unsigned short |
14 unsigned short |
| 15 gaim_network_get_port_from_fd(fd) |
15 gaim_network_get_port_from_fd(fd) |
| 16 int fd |
16 int fd |
| 17 |
17 |
| 18 const char * |
18 const char * |
| 19 gaim_network_get_public_ip() |
19 gaim_network_get_public_ip() |
| 20 |
|
| 21 |
20 |
| 22 void |
21 void |
| 23 gaim_network_init() |
22 gaim_network_init() |
| 24 |
|
| 25 |
23 |
| 26 const unsigned char * |
24 const unsigned char * |
| 27 gaim_network_ip_atoi(ip) |
25 gaim_network_ip_atoi(ip) |
| 28 const char *ip |
26 const char *ip |
| 29 |
27 |
| 30 int |
28 int |
| 31 gaim_network_listen(port, socket_type) |
29 gaim_network_listen(port, socket_type) |
| 32 unsigned short port |
30 unsigned short port |
| 33 int socket_type |
31 int socket_type |
| 34 |
32 |
| 35 int |
33 int |
| 36 gaim_network_listen_range(start, end, socket_type) |
34 gaim_network_listen_range(start, end, socket_type) |
| 37 unsigned short start |
35 unsigned short start |
| 38 unsigned short end |
36 unsigned short end |
| 39 int socket_type |
37 int socket_type |
| 40 |
38 |
| 41 void |
39 void |
| 42 gaim_network_set_public_ip(ip) |
40 gaim_network_set_public_ip(ip) |
| 43 const char *ip |
41 const char *ip |
| 44 |
|