Mon, 12 Apr 2010 00:24:04 +0000
I got confused when I first read this because I looked at the functions above
this one in the header file and it didn't seem like the boolean would apply
to them. Maybe this is more clear?
| 8231 | 1 | /** |
| 2 | * @file network.h Network API | |
| 3 | * @ingroup core | |
|
20147
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
4 | */ |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
5 | |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
6 | /* purple |
| 8231 | 7 | * |
| 15884 | 8 | * Purple is the legal property of its developers, whose names are too numerous |
| 8231 | 9 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 10 | * source distribution. | |
| 11 | * | |
| 12 | * This program is free software; you can redistribute it and/or modify | |
| 13 | * it under the terms of the GNU General Public License as published by | |
| 14 | * the Free Software Foundation; either version 2 of the License, or | |
| 15 | * (at your option) any later version. | |
| 16 | * | |
| 17 | * This program is distributed in the hope that it will be useful, | |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 20 | * GNU General Public License for more details. | |
| 21 | * | |
| 22 | * You should have received a copy of the GNU General Public License | |
| 23 | * along with this program; if not, write to the Free Software | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
16035
diff
changeset
|
24 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 8231 | 25 | */ |
| 15884 | 26 | #ifndef _PURPLE_NETWORK_H_ |
| 27 | #define _PURPLE_NETWORK_H_ | |
| 8231 | 28 | |
| 29 | #ifdef __cplusplus | |
| 30 | extern "C" { | |
| 31 | #endif | |
| 32 | ||
| 33 | /**************************************************************************/ | |
|
8834
0a798e3d2b84
[gaim-migrate @ 9598]
Mark Doliner <markdoliner@pidgin.im>
parents:
8250
diff
changeset
|
34 | /** @name Network API */ |
| 8231 | 35 | /**************************************************************************/ |
| 36 | /*@{*/ | |
| 37 | ||
| 15884 | 38 | typedef struct _PurpleNetworkListenData PurpleNetworkListenData; |
|
14329
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
39 | |
| 15884 | 40 | typedef void (*PurpleNetworkListenCallback) (int listenfd, gpointer data); |
|
12909
dfcf4df1dcd7
[gaim-migrate @ 15262]
Daniel Atallah <datallah@pidgin.im>
parents:
12730
diff
changeset
|
41 | |
| 8231 | 42 | /** |
|
8838
c23227da7b4a
[gaim-migrate @ 9604]
Mark Doliner <markdoliner@pidgin.im>
parents:
8834
diff
changeset
|
43 | * Converts a dot-decimal IP address to an array of unsigned |
|
c23227da7b4a
[gaim-migrate @ 9604]
Mark Doliner <markdoliner@pidgin.im>
parents:
8834
diff
changeset
|
44 | * chars. For example, converts 192.168.0.1 to a 4 byte |
|
c23227da7b4a
[gaim-migrate @ 9604]
Mark Doliner <markdoliner@pidgin.im>
parents:
8834
diff
changeset
|
45 | * array containing 192, 168, 0 and 1. |
|
c23227da7b4a
[gaim-migrate @ 9604]
Mark Doliner <markdoliner@pidgin.im>
parents:
8834
diff
changeset
|
46 | * |
|
c23227da7b4a
[gaim-migrate @ 9604]
Mark Doliner <markdoliner@pidgin.im>
parents:
8834
diff
changeset
|
47 | * @param ip An IP address in dot-decimal notiation. |
|
c23227da7b4a
[gaim-migrate @ 9604]
Mark Doliner <markdoliner@pidgin.im>
parents:
8834
diff
changeset
|
48 | * @return An array of 4 bytes containing an IP addresses |
|
c23227da7b4a
[gaim-migrate @ 9604]
Mark Doliner <markdoliner@pidgin.im>
parents:
8834
diff
changeset
|
49 | * equivalent to the given parameter, or NULL if |
|
c23227da7b4a
[gaim-migrate @ 9604]
Mark Doliner <markdoliner@pidgin.im>
parents:
8834
diff
changeset
|
50 | * the given IP address is invalid. This value |
|
c23227da7b4a
[gaim-migrate @ 9604]
Mark Doliner <markdoliner@pidgin.im>
parents:
8834
diff
changeset
|
51 | * is statically allocated and should not be |
|
c23227da7b4a
[gaim-migrate @ 9604]
Mark Doliner <markdoliner@pidgin.im>
parents:
8834
diff
changeset
|
52 | * freed. |
|
c23227da7b4a
[gaim-migrate @ 9604]
Mark Doliner <markdoliner@pidgin.im>
parents:
8834
diff
changeset
|
53 | */ |
| 15884 | 54 | const unsigned char *purple_network_ip_atoi(const char *ip); |
|
8838
c23227da7b4a
[gaim-migrate @ 9604]
Mark Doliner <markdoliner@pidgin.im>
parents:
8834
diff
changeset
|
55 | |
|
c23227da7b4a
[gaim-migrate @ 9604]
Mark Doliner <markdoliner@pidgin.im>
parents:
8834
diff
changeset
|
56 | /** |
|
8834
0a798e3d2b84
[gaim-migrate @ 9598]
Mark Doliner <markdoliner@pidgin.im>
parents:
8250
diff
changeset
|
57 | * Sets the IP address of the local system in preferences. This |
|
0a798e3d2b84
[gaim-migrate @ 9598]
Mark Doliner <markdoliner@pidgin.im>
parents:
8250
diff
changeset
|
58 | * is the IP address that should be used for incoming connections |
|
0a798e3d2b84
[gaim-migrate @ 9598]
Mark Doliner <markdoliner@pidgin.im>
parents:
8250
diff
changeset
|
59 | * (file transfer, direct IM, etc.) and should therefore be |
|
0a798e3d2b84
[gaim-migrate @ 9598]
Mark Doliner <markdoliner@pidgin.im>
parents:
8250
diff
changeset
|
60 | * publicly accessible. |
| 8231 | 61 | * |
| 62 | * @param ip The local IP address. | |
| 63 | */ | |
| 15884 | 64 | void purple_network_set_public_ip(const char *ip); |
| 8231 | 65 | |
| 66 | /** | |
| 67 | * Returns the IP address of the local system set in preferences. | |
| 68 | * | |
| 15884 | 69 | * This returns the value set via purple_network_set_public_ip(). |
| 70 | * You probably want to use purple_network_get_my_ip() instead. | |
| 8231 | 71 | * |
| 72 | * @return The local IP address set in preferences. | |
| 73 | */ | |
| 15884 | 74 | const char *purple_network_get_public_ip(void); |
| 8231 | 75 | |
| 76 | /** | |
| 77 | * Returns the IP address of the local system. | |
| 78 | * | |
| 15884 | 79 | * You probably want to use purple_network_get_my_ip() instead. |
| 8231 | 80 | * |
| 81 | * @note The returned string is a pointer to a static buffer. If this | |
| 82 | * function is called twice, it may be important to make a copy | |
| 83 | * of the returned string. | |
| 84 | * | |
| 85 | * @param fd The fd to use to help figure out the IP, or else -1. | |
| 86 | * @return The local IP address. | |
| 87 | */ | |
| 15884 | 88 | const char *purple_network_get_local_system_ip(int fd); |
| 8231 | 89 | |
| 90 | /** | |
|
29510
9c636f4b965c
Add a function to enumerate all local IPs
Marcus Lundblad <malu@pidgin.im>
parents:
27980
diff
changeset
|
91 | * Returns all IP addresses of the local system. |
|
9c636f4b965c
Add a function to enumerate all local IPs
Marcus Lundblad <malu@pidgin.im>
parents:
27980
diff
changeset
|
92 | * |
|
29511
7c4b1ba4f2aa
Remove IPv6 support from _get_local_system_ips, since I couldn't get it to
Marcus Lundblad <malu@pidgin.im>
parents:
29510
diff
changeset
|
93 | * @note The caller must free this list, this function currently only |
|
7c4b1ba4f2aa
Remove IPv6 support from _get_local_system_ips, since I couldn't get it to
Marcus Lundblad <malu@pidgin.im>
parents:
29510
diff
changeset
|
94 | * handles IPv4 addresses |
|
7c4b1ba4f2aa
Remove IPv6 support from _get_local_system_ips, since I couldn't get it to
Marcus Lundblad <malu@pidgin.im>
parents:
29510
diff
changeset
|
95 | * @since 2.7.0 |
|
29510
9c636f4b965c
Add a function to enumerate all local IPs
Marcus Lundblad <malu@pidgin.im>
parents:
27980
diff
changeset
|
96 | * |
|
9c636f4b965c
Add a function to enumerate all local IPs
Marcus Lundblad <malu@pidgin.im>
parents:
27980
diff
changeset
|
97 | * @return A list of local IP addresses. |
|
9c636f4b965c
Add a function to enumerate all local IPs
Marcus Lundblad <malu@pidgin.im>
parents:
27980
diff
changeset
|
98 | */ |
|
29511
7c4b1ba4f2aa
Remove IPv6 support from _get_local_system_ips, since I couldn't get it to
Marcus Lundblad <malu@pidgin.im>
parents:
29510
diff
changeset
|
99 | GList *purple_network_get_all_local_system_ips(void); |
|
29510
9c636f4b965c
Add a function to enumerate all local IPs
Marcus Lundblad <malu@pidgin.im>
parents:
27980
diff
changeset
|
100 | |
|
9c636f4b965c
Add a function to enumerate all local IPs
Marcus Lundblad <malu@pidgin.im>
parents:
27980
diff
changeset
|
101 | /** |
|
8834
0a798e3d2b84
[gaim-migrate @ 9598]
Mark Doliner <markdoliner@pidgin.im>
parents:
8250
diff
changeset
|
102 | * Returns the IP address that should be used anywhere a |
|
0a798e3d2b84
[gaim-migrate @ 9598]
Mark Doliner <markdoliner@pidgin.im>
parents:
8250
diff
changeset
|
103 | * public IP addresses is needed (listening for an incoming |
|
0a798e3d2b84
[gaim-migrate @ 9598]
Mark Doliner <markdoliner@pidgin.im>
parents:
8250
diff
changeset
|
104 | * file transfer, etc). |
| 8231 | 105 | * |
|
8834
0a798e3d2b84
[gaim-migrate @ 9598]
Mark Doliner <markdoliner@pidgin.im>
parents:
8250
diff
changeset
|
106 | * If the user has manually specified an IP address via |
|
0a798e3d2b84
[gaim-migrate @ 9598]
Mark Doliner <markdoliner@pidgin.im>
parents:
8250
diff
changeset
|
107 | * preferences, then this IP is returned. Otherwise the |
| 15884 | 108 | * IP address returned by purple_network_get_local_system_ip() |
|
8834
0a798e3d2b84
[gaim-migrate @ 9598]
Mark Doliner <markdoliner@pidgin.im>
parents:
8250
diff
changeset
|
109 | * is returned. |
| 8231 | 110 | * |
| 111 | * @note The returned string is a pointer to a static buffer. If this | |
| 112 | * function is called twice, it may be important to make a copy | |
| 113 | * of the returned string. | |
| 114 | * | |
| 115 | * @param fd The fd to use to help figure out the IP, or -1. | |
| 116 | * @return The local IP address to be used. | |
| 117 | */ | |
| 15884 | 118 | const char *purple_network_get_my_ip(int fd); |
| 8231 | 119 | |
|
21549
7436059db33b
Don't map the port used for bonjour file transfers externally. This adds a new function that will go away in 3.0.0 when we can modify purple_network_do_listen to take an additional parameter.
Daniel Atallah <datallah@pidgin.im>
parents:
20147
diff
changeset
|
120 | /** |
|
7436059db33b
Don't map the port used for bonjour file transfers externally. This adds a new function that will go away in 3.0.0 when we can modify purple_network_do_listen to take an additional parameter.
Daniel Atallah <datallah@pidgin.im>
parents:
20147
diff
changeset
|
121 | * Should calls to purple_network_listen() and purple_network_listen_range() |
|
7436059db33b
Don't map the port used for bonjour file transfers externally. This adds a new function that will go away in 3.0.0 when we can modify purple_network_do_listen to take an additional parameter.
Daniel Atallah <datallah@pidgin.im>
parents:
20147
diff
changeset
|
122 | * map the port externally using NAT-PMP or UPnP? |
|
7436059db33b
Don't map the port used for bonjour file transfers externally. This adds a new function that will go away in 3.0.0 when we can modify purple_network_do_listen to take an additional parameter.
Daniel Atallah <datallah@pidgin.im>
parents:
20147
diff
changeset
|
123 | * The default value is TRUE |
|
7436059db33b
Don't map the port used for bonjour file transfers externally. This adds a new function that will go away in 3.0.0 when we can modify purple_network_do_listen to take an additional parameter.
Daniel Atallah <datallah@pidgin.im>
parents:
20147
diff
changeset
|
124 | * |
|
7436059db33b
Don't map the port used for bonjour file transfers externally. This adds a new function that will go away in 3.0.0 when we can modify purple_network_do_listen to take an additional parameter.
Daniel Atallah <datallah@pidgin.im>
parents:
20147
diff
changeset
|
125 | * @param map_external Should the open port be mapped externally? |
|
29988
05a37f85b276
I got confused when I first read this because I looked at the functions above
Mark Doliner <markdoliner@pidgin.im>
parents:
29987
diff
changeset
|
126 | * @deprecated In 3.0.0 a boolean will be added to the functions mentioned |
|
05a37f85b276
I got confused when I first read this because I looked at the functions above
Mark Doliner <markdoliner@pidgin.im>
parents:
29987
diff
changeset
|
127 | * above to perform the same function. |
|
21549
7436059db33b
Don't map the port used for bonjour file transfers externally. This adds a new function that will go away in 3.0.0 when we can modify purple_network_do_listen to take an additional parameter.
Daniel Atallah <datallah@pidgin.im>
parents:
20147
diff
changeset
|
128 | * @since 2.3.0 |
|
7436059db33b
Don't map the port used for bonjour file transfers externally. This adds a new function that will go away in 3.0.0 when we can modify purple_network_do_listen to take an additional parameter.
Daniel Atallah <datallah@pidgin.im>
parents:
20147
diff
changeset
|
129 | */ |
|
7436059db33b
Don't map the port used for bonjour file transfers externally. This adds a new function that will go away in 3.0.0 when we can modify purple_network_do_listen to take an additional parameter.
Daniel Atallah <datallah@pidgin.im>
parents:
20147
diff
changeset
|
130 | void purple_network_listen_map_external(gboolean map_external); |
|
7436059db33b
Don't map the port used for bonjour file transfers externally. This adds a new function that will go away in 3.0.0 when we can modify purple_network_do_listen to take an additional parameter.
Daniel Atallah <datallah@pidgin.im>
parents:
20147
diff
changeset
|
131 | |
| 8231 | 132 | /** |
|
8250
e855dcce1fa0
[gaim-migrate @ 8973]
Mark Doliner <markdoliner@pidgin.im>
parents:
8248
diff
changeset
|
133 | * Attempts to open a listening port ONLY on the specified port number. |
| 15884 | 134 | * You probably want to use purple_network_listen_range() instead of this. |
|
8250
e855dcce1fa0
[gaim-migrate @ 8973]
Mark Doliner <markdoliner@pidgin.im>
parents:
8248
diff
changeset
|
135 | * This function is useful, for example, if you wanted to write a telnet |
| 15884 | 136 | * server as a Purple plugin, and you HAD to listen on port 23. Why anyone |
|
8248
47da4fbe1a17
[gaim-migrate @ 8971]
Mark Doliner <markdoliner@pidgin.im>
parents:
8246
diff
changeset
|
137 | * would want to do that is beyond me. |
| 8231 | 138 | * |
| 139 | * This opens a listening port. The caller will want to set up a watcher | |
| 15884 | 140 | * of type PURPLE_INPUT_READ on the fd returned in cb. It will probably call |
|
12909
dfcf4df1dcd7
[gaim-migrate @ 15262]
Daniel Atallah <datallah@pidgin.im>
parents:
12730
diff
changeset
|
141 | * accept in the watcher callback, and then possibly remove the watcher and close |
| 8231 | 142 | * the listening socket, and add a new watcher on the new socket accept |
| 143 | * returned. | |
| 144 | * | |
|
8250
e855dcce1fa0
[gaim-migrate @ 8973]
Mark Doliner <markdoliner@pidgin.im>
parents:
8248
diff
changeset
|
145 | * @param port The port number to bind to. Must be greater than 0. |
|
12730
f64fdbc34677
[gaim-migrate @ 15074]
Daniel Atallah <datallah@pidgin.im>
parents:
8915
diff
changeset
|
146 | * @param socket_type The type of socket to open for listening. |
|
f64fdbc34677
[gaim-migrate @ 15074]
Daniel Atallah <datallah@pidgin.im>
parents:
8915
diff
changeset
|
147 | * This will be either SOCK_STREAM for TCP or SOCK_DGRAM for UDP. |
|
12909
dfcf4df1dcd7
[gaim-migrate @ 15262]
Daniel Atallah <datallah@pidgin.im>
parents:
12730
diff
changeset
|
148 | * @param cb The callback to be invoked when the port to listen on is available. |
|
dfcf4df1dcd7
[gaim-migrate @ 15262]
Daniel Atallah <datallah@pidgin.im>
parents:
12730
diff
changeset
|
149 | * The file descriptor of the listening socket will be specified in |
|
dfcf4df1dcd7
[gaim-migrate @ 15262]
Daniel Atallah <datallah@pidgin.im>
parents:
12730
diff
changeset
|
150 | * this callback, or -1 if no socket could be established. |
|
dfcf4df1dcd7
[gaim-migrate @ 15262]
Daniel Atallah <datallah@pidgin.im>
parents:
12730
diff
changeset
|
151 | * @param cb_data extra data to be returned when cb is called |
|
8246
c83c0421149a
[gaim-migrate @ 8969]
Mark Doliner <markdoliner@pidgin.im>
parents:
8240
diff
changeset
|
152 | * |
|
14329
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
153 | * @return A pointer to a data structure that can be used to cancel |
|
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
154 | * the pending listener, or NULL if unable to obtain a local |
|
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
155 | * socket to listen on. |
| 8231 | 156 | */ |
| 15884 | 157 | PurpleNetworkListenData *purple_network_listen(unsigned short port, |
| 158 | int socket_type, PurpleNetworkListenCallback cb, gpointer cb_data); | |
|
8246
c83c0421149a
[gaim-migrate @ 8969]
Mark Doliner <markdoliner@pidgin.im>
parents:
8240
diff
changeset
|
159 | |
|
c83c0421149a
[gaim-migrate @ 8969]
Mark Doliner <markdoliner@pidgin.im>
parents:
8240
diff
changeset
|
160 | /** |
|
8250
e855dcce1fa0
[gaim-migrate @ 8973]
Mark Doliner <markdoliner@pidgin.im>
parents:
8248
diff
changeset
|
161 | * Opens a listening port selected from a range of ports. The range of |
|
8248
47da4fbe1a17
[gaim-migrate @ 8971]
Mark Doliner <markdoliner@pidgin.im>
parents:
8246
diff
changeset
|
162 | * ports used is chosen in the following manner: |
|
47da4fbe1a17
[gaim-migrate @ 8971]
Mark Doliner <markdoliner@pidgin.im>
parents:
8246
diff
changeset
|
163 | * If a range is specified in preferences, these values are used. |
|
8250
e855dcce1fa0
[gaim-migrate @ 8973]
Mark Doliner <markdoliner@pidgin.im>
parents:
8248
diff
changeset
|
164 | * If a non-0 values are passed to the function as parameters, these |
|
8248
47da4fbe1a17
[gaim-migrate @ 8971]
Mark Doliner <markdoliner@pidgin.im>
parents:
8246
diff
changeset
|
165 | * values are used. |
|
13328
65543dcbaa89
[gaim-migrate @ 15697]
Mark Doliner <markdoliner@pidgin.im>
parents:
12909
diff
changeset
|
166 | * Otherwise a port is chosen at random by the operating system. |
|
8246
c83c0421149a
[gaim-migrate @ 8969]
Mark Doliner <markdoliner@pidgin.im>
parents:
8240
diff
changeset
|
167 | * |
|
c83c0421149a
[gaim-migrate @ 8969]
Mark Doliner <markdoliner@pidgin.im>
parents:
8240
diff
changeset
|
168 | * This opens a listening port. The caller will want to set up a watcher |
| 15884 | 169 | * of type PURPLE_INPUT_READ on the fd returned in cb. It will probably call |
|
12909
dfcf4df1dcd7
[gaim-migrate @ 15262]
Daniel Atallah <datallah@pidgin.im>
parents:
12730
diff
changeset
|
170 | * accept in the watcher callback, and then possibly remove the watcher and close |
|
8246
c83c0421149a
[gaim-migrate @ 8969]
Mark Doliner <markdoliner@pidgin.im>
parents:
8240
diff
changeset
|
171 | * the listening socket, and add a new watcher on the new socket accept |
|
c83c0421149a
[gaim-migrate @ 8969]
Mark Doliner <markdoliner@pidgin.im>
parents:
8240
diff
changeset
|
172 | * returned. |
|
c83c0421149a
[gaim-migrate @ 8969]
Mark Doliner <markdoliner@pidgin.im>
parents:
8240
diff
changeset
|
173 | * |
|
8248
47da4fbe1a17
[gaim-migrate @ 8971]
Mark Doliner <markdoliner@pidgin.im>
parents:
8246
diff
changeset
|
174 | * @param start The port number to bind to, or 0 to pick a random port. |
|
8246
c83c0421149a
[gaim-migrate @ 8969]
Mark Doliner <markdoliner@pidgin.im>
parents:
8240
diff
changeset
|
175 | * Users are allowed to override this arg in prefs. |
|
c83c0421149a
[gaim-migrate @ 8969]
Mark Doliner <markdoliner@pidgin.im>
parents:
8240
diff
changeset
|
176 | * @param end The highest possible port in the range of ports to listen on, |
|
8248
47da4fbe1a17
[gaim-migrate @ 8971]
Mark Doliner <markdoliner@pidgin.im>
parents:
8246
diff
changeset
|
177 | * or 0 to pick a random port. Users are allowed to override this |
|
8246
c83c0421149a
[gaim-migrate @ 8969]
Mark Doliner <markdoliner@pidgin.im>
parents:
8240
diff
changeset
|
178 | * arg in prefs. |
|
12730
f64fdbc34677
[gaim-migrate @ 15074]
Daniel Atallah <datallah@pidgin.im>
parents:
8915
diff
changeset
|
179 | * @param socket_type The type of socket to open for listening. |
|
f64fdbc34677
[gaim-migrate @ 15074]
Daniel Atallah <datallah@pidgin.im>
parents:
8915
diff
changeset
|
180 | * This will be either SOCK_STREAM for TCP or SOCK_DGRAM for UDP. |
|
12909
dfcf4df1dcd7
[gaim-migrate @ 15262]
Daniel Atallah <datallah@pidgin.im>
parents:
12730
diff
changeset
|
181 | * @param cb The callback to be invoked when the port to listen on is available. |
|
dfcf4df1dcd7
[gaim-migrate @ 15262]
Daniel Atallah <datallah@pidgin.im>
parents:
12730
diff
changeset
|
182 | * The file descriptor of the listening socket will be specified in |
|
dfcf4df1dcd7
[gaim-migrate @ 15262]
Daniel Atallah <datallah@pidgin.im>
parents:
12730
diff
changeset
|
183 | * this callback, or -1 if no socket could be established. |
|
dfcf4df1dcd7
[gaim-migrate @ 15262]
Daniel Atallah <datallah@pidgin.im>
parents:
12730
diff
changeset
|
184 | * @param cb_data extra data to be returned when cb is called |
|
8250
e855dcce1fa0
[gaim-migrate @ 8973]
Mark Doliner <markdoliner@pidgin.im>
parents:
8248
diff
changeset
|
185 | * |
|
14329
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
186 | * @return A pointer to a data structure that can be used to cancel |
|
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
187 | * the pending listener, or NULL if unable to obtain a local |
|
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
188 | * socket to listen on. |
|
8246
c83c0421149a
[gaim-migrate @ 8969]
Mark Doliner <markdoliner@pidgin.im>
parents:
8240
diff
changeset
|
189 | */ |
| 15884 | 190 | PurpleNetworkListenData *purple_network_listen_range(unsigned short start, |
|
14329
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
191 | unsigned short end, int socket_type, |
| 15884 | 192 | PurpleNetworkListenCallback cb, gpointer cb_data); |
|
14329
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
193 | |
|
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
194 | /** |
|
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
195 | * This can be used to cancel any in-progress listener connection |
| 15884 | 196 | * by passing in the return value from either purple_network_listen() |
| 197 | * or purple_network_listen_range(). | |
|
14329
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
198 | * |
|
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
199 | * @param listen_data This listener attempt will be canceled and |
|
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
200 | * the struct will be freed. |
|
05c3cc0c1f79
[gaim-migrate @ 16949]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
201 | */ |
| 15884 | 202 | void purple_network_listen_cancel(PurpleNetworkListenData *listen_data); |
| 8231 | 203 | |
| 204 | /** | |
| 205 | * Gets a port number from a file descriptor. | |
| 206 | * | |
| 207 | * @param fd The file descriptor. This should be a tcp socket. The current | |
| 208 | * implementation probably dies on anything but IPv4. Perhaps this | |
| 15884 | 209 | * possible bug will inspire new and valuable contributors to Purple. |
| 8231 | 210 | * @return The port number, in host byte order. |
| 211 | */ | |
| 15884 | 212 | unsigned short purple_network_get_port_from_fd(int fd); |
| 8231 | 213 | |
| 214 | /** | |
|
24567
edd8e0bb750c
Update the docs for purple_network_is_available(). It doesn't block.
Richard Laager <rlaager@pidgin.im>
parents:
21549
diff
changeset
|
215 | * Detects if there is an available network connection. |
| 14758 | 216 | * |
|
24567
edd8e0bb750c
Update the docs for purple_network_is_available(). It doesn't block.
Richard Laager <rlaager@pidgin.im>
parents:
21549
diff
changeset
|
217 | * @return TRUE if the network is available |
| 14758 | 218 | */ |
| 15884 | 219 | gboolean purple_network_is_available(void); |
| 14758 | 220 | |
| 221 | /** | |
|
24999
84d597b7e7c6
Add a -f/--force-online option to Pidgin which tells libpurple to claim the
Richard Laager <rlaager@pidgin.im>
parents:
24568
diff
changeset
|
222 | * Makes purple_network_is_available() always return @c TRUE. |
|
84d597b7e7c6
Add a -f/--force-online option to Pidgin which tells libpurple to claim the
Richard Laager <rlaager@pidgin.im>
parents:
24568
diff
changeset
|
223 | * |
|
84d597b7e7c6
Add a -f/--force-online option to Pidgin which tells libpurple to claim the
Richard Laager <rlaager@pidgin.im>
parents:
24568
diff
changeset
|
224 | * This is what backs the --force-online command line argument in Pidgin, |
|
84d597b7e7c6
Add a -f/--force-online option to Pidgin which tells libpurple to claim the
Richard Laager <rlaager@pidgin.im>
parents:
24568
diff
changeset
|
225 | * for example. This is useful for offline testing, especially when |
|
84d597b7e7c6
Add a -f/--force-online option to Pidgin which tells libpurple to claim the
Richard Laager <rlaager@pidgin.im>
parents:
24568
diff
changeset
|
226 | * combined with nullprpl. |
|
84d597b7e7c6
Add a -f/--force-online option to Pidgin which tells libpurple to claim the
Richard Laager <rlaager@pidgin.im>
parents:
24568
diff
changeset
|
227 | * |
|
84d597b7e7c6
Add a -f/--force-online option to Pidgin which tells libpurple to claim the
Richard Laager <rlaager@pidgin.im>
parents:
24568
diff
changeset
|
228 | * @since 2.6.0 |
|
84d597b7e7c6
Add a -f/--force-online option to Pidgin which tells libpurple to claim the
Richard Laager <rlaager@pidgin.im>
parents:
24568
diff
changeset
|
229 | */ |
|
84d597b7e7c6
Add a -f/--force-online option to Pidgin which tells libpurple to claim the
Richard Laager <rlaager@pidgin.im>
parents:
24568
diff
changeset
|
230 | void purple_network_force_online(void); |
|
84d597b7e7c6
Add a -f/--force-online option to Pidgin which tells libpurple to claim the
Richard Laager <rlaager@pidgin.im>
parents:
24568
diff
changeset
|
231 | |
|
84d597b7e7c6
Add a -f/--force-online option to Pidgin which tells libpurple to claim the
Richard Laager <rlaager@pidgin.im>
parents:
24568
diff
changeset
|
232 | /** |
|
16035
eb4eda79a147
The network module now registers the signal 'network-configuration-changed' and emits it when a network change is detected via libnm or the win32 network monitor. The UI could also emit this signal if it knows something network.c doesn't. UPnP and NAT-PMP respond to the signal by clearing their IP address caches; changing networks without quitting/relaunching will now lead to the new IP address being (lazily) determined. This commit also enables nat-pmp and adds nat-pmp.[h|c] to the build process; please let me know if there are any problems building, as I only have OS X test machines.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
233 | * Get the handle for the network system |
|
eb4eda79a147
The network module now registers the signal 'network-configuration-changed' and emits it when a network change is detected via libnm or the win32 network monitor. The UI could also emit this signal if it knows something network.c doesn't. UPnP and NAT-PMP respond to the signal by clearing their IP address caches; changing networks without quitting/relaunching will now lead to the new IP address being (lazily) determined. This commit also enables nat-pmp and adds nat-pmp.[h|c] to the build process; please let me know if there are any problems building, as I only have OS X test machines.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
234 | * |
|
eb4eda79a147
The network module now registers the signal 'network-configuration-changed' and emits it when a network change is detected via libnm or the win32 network monitor. The UI could also emit this signal if it knows something network.c doesn't. UPnP and NAT-PMP respond to the signal by clearing their IP address caches; changing networks without quitting/relaunching will now lead to the new IP address being (lazily) determined. This commit also enables nat-pmp and adds nat-pmp.[h|c] to the build process; please let me know if there are any problems building, as I only have OS X test machines.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
235 | * @return the handle to the network system |
|
eb4eda79a147
The network module now registers the signal 'network-configuration-changed' and emits it when a network change is detected via libnm or the win32 network monitor. The UI could also emit this signal if it knows something network.c doesn't. UPnP and NAT-PMP respond to the signal by clearing their IP address caches; changing networks without quitting/relaunching will now lead to the new IP address being (lazily) determined. This commit also enables nat-pmp and adds nat-pmp.[h|c] to the build process; please let me know if there are any problems building, as I only have OS X test machines.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
236 | */ |
|
eb4eda79a147
The network module now registers the signal 'network-configuration-changed' and emits it when a network change is detected via libnm or the win32 network monitor. The UI could also emit this signal if it knows something network.c doesn't. UPnP and NAT-PMP respond to the signal by clearing their IP address caches; changing networks without quitting/relaunching will now lead to the new IP address being (lazily) determined. This commit also enables nat-pmp and adds nat-pmp.[h|c] to the build process; please let me know if there are any problems building, as I only have OS X test machines.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
237 | void *purple_network_get_handle(void); |
|
eb4eda79a147
The network module now registers the signal 'network-configuration-changed' and emits it when a network change is detected via libnm or the win32 network monitor. The UI could also emit this signal if it knows something network.c doesn't. UPnP and NAT-PMP respond to the signal by clearing their IP address caches; changing networks without quitting/relaunching will now lead to the new IP address being (lazily) determined. This commit also enables nat-pmp and adds nat-pmp.[h|c] to the build process; please let me know if there are any problems building, as I only have OS X test machines.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
238 | |
|
29987
59b582625aaf
Strip trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
29686
diff
changeset
|
239 | /** |
|
26261
ffabb135a4b6
Added support to generate relayed candidates (TURN).
Marcus Lundblad <malu@pidgin.im>
parents:
26256
diff
changeset
|
240 | * Update the STUN server IP given the host name |
|
26256
d2673c935184
Run an asynchronous DNS lookup for the STUN server IP (to set as a property
Marcus Lundblad <malu@pidgin.im>
parents:
24568
diff
changeset
|
241 | * Will result in a DNS query being executed asynchronous |
|
29987
59b582625aaf
Strip trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
29686
diff
changeset
|
242 | * |
|
26256
d2673c935184
Run an asynchronous DNS lookup for the STUN server IP (to set as a property
Marcus Lundblad <malu@pidgin.im>
parents:
24568
diff
changeset
|
243 | * @param stun_server The host name of the STUN server to set |
|
26644
c0ec4f7d8515
ChangeLog.API new calls for STUN and TURN servers used by vv
Marcus Lundblad <malu@pidgin.im>
parents:
26337
diff
changeset
|
244 | * @since 2.6.0 |
|
26256
d2673c935184
Run an asynchronous DNS lookup for the STUN server IP (to set as a property
Marcus Lundblad <malu@pidgin.im>
parents:
24568
diff
changeset
|
245 | */ |
|
d2673c935184
Run an asynchronous DNS lookup for the STUN server IP (to set as a property
Marcus Lundblad <malu@pidgin.im>
parents:
24568
diff
changeset
|
246 | void purple_network_set_stun_server(const gchar *stun_server); |
|
29987
59b582625aaf
Strip trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
29686
diff
changeset
|
247 | |
|
26256
d2673c935184
Run an asynchronous DNS lookup for the STUN server IP (to set as a property
Marcus Lundblad <malu@pidgin.im>
parents:
24568
diff
changeset
|
248 | /** |
|
d2673c935184
Run an asynchronous DNS lookup for the STUN server IP (to set as a property
Marcus Lundblad <malu@pidgin.im>
parents:
24568
diff
changeset
|
249 | * Get the IP address of the STUN server as a string representation |
|
d2673c935184
Run an asynchronous DNS lookup for the STUN server IP (to set as a property
Marcus Lundblad <malu@pidgin.im>
parents:
24568
diff
changeset
|
250 | * |
|
d2673c935184
Run an asynchronous DNS lookup for the STUN server IP (to set as a property
Marcus Lundblad <malu@pidgin.im>
parents:
24568
diff
changeset
|
251 | * @return the IP address |
|
26644
c0ec4f7d8515
ChangeLog.API new calls for STUN and TURN servers used by vv
Marcus Lundblad <malu@pidgin.im>
parents:
26337
diff
changeset
|
252 | * @since 2.6.0 |
|
26256
d2673c935184
Run an asynchronous DNS lookup for the STUN server IP (to set as a property
Marcus Lundblad <malu@pidgin.im>
parents:
24568
diff
changeset
|
253 | */ |
|
d2673c935184
Run an asynchronous DNS lookup for the STUN server IP (to set as a property
Marcus Lundblad <malu@pidgin.im>
parents:
24568
diff
changeset
|
254 | const gchar *purple_network_get_stun_ip(void); |
|
29987
59b582625aaf
Strip trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
29686
diff
changeset
|
255 | |
|
59b582625aaf
Strip trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
29686
diff
changeset
|
256 | /** |
|
26261
ffabb135a4b6
Added support to generate relayed candidates (TURN).
Marcus Lundblad <malu@pidgin.im>
parents:
26256
diff
changeset
|
257 | * Update the TURN server IP given the host name |
|
ffabb135a4b6
Added support to generate relayed candidates (TURN).
Marcus Lundblad <malu@pidgin.im>
parents:
26256
diff
changeset
|
258 | * Will result in a DNS query being executed asynchronous |
|
29987
59b582625aaf
Strip trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
29686
diff
changeset
|
259 | * |
|
27980
a959d4eb647c
I think this is the 3rd fix for the same error in the same function
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
27898
diff
changeset
|
260 | * @param turn_server The host name of the TURN server to set |
|
26644
c0ec4f7d8515
ChangeLog.API new calls for STUN and TURN servers used by vv
Marcus Lundblad <malu@pidgin.im>
parents:
26337
diff
changeset
|
261 | * @since 2.6.0 |
|
26261
ffabb135a4b6
Added support to generate relayed candidates (TURN).
Marcus Lundblad <malu@pidgin.im>
parents:
26256
diff
changeset
|
262 | */ |
|
27403
7e44bc3accd5
Fix the name of an argument.
Marcus Lundblad <malu@pidgin.im>
parents:
27332
diff
changeset
|
263 | void purple_network_set_turn_server(const gchar *turn_server); |
|
29987
59b582625aaf
Strip trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
29686
diff
changeset
|
264 | |
|
26261
ffabb135a4b6
Added support to generate relayed candidates (TURN).
Marcus Lundblad <malu@pidgin.im>
parents:
26256
diff
changeset
|
265 | /** |
|
29230
76bab3cd1668
Fix an incorrect API comment
Marcus Lundblad <malu@pidgin.im>
parents:
27980
diff
changeset
|
266 | * Get the IP address of the TURN server as a string representation |
|
26261
ffabb135a4b6
Added support to generate relayed candidates (TURN).
Marcus Lundblad <malu@pidgin.im>
parents:
26256
diff
changeset
|
267 | * |
|
ffabb135a4b6
Added support to generate relayed candidates (TURN).
Marcus Lundblad <malu@pidgin.im>
parents:
26256
diff
changeset
|
268 | * @return the IP address |
|
26644
c0ec4f7d8515
ChangeLog.API new calls for STUN and TURN servers used by vv
Marcus Lundblad <malu@pidgin.im>
parents:
26337
diff
changeset
|
269 | * @since 2.6.0 |
|
26261
ffabb135a4b6
Added support to generate relayed candidates (TURN).
Marcus Lundblad <malu@pidgin.im>
parents:
26256
diff
changeset
|
270 | */ |
|
ffabb135a4b6
Added support to generate relayed candidates (TURN).
Marcus Lundblad <malu@pidgin.im>
parents:
26256
diff
changeset
|
271 | const gchar *purple_network_get_turn_ip(void); |
|
29987
59b582625aaf
Strip trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
29686
diff
changeset
|
272 | |
|
27332
8240ab259385
Add a function to remove a port mapping (UPnP or NAT-PMP) given a file
Marcus Lundblad <malu@pidgin.im>
parents:
26644
diff
changeset
|
273 | /** |
|
8240ab259385
Add a function to remove a port mapping (UPnP or NAT-PMP) given a file
Marcus Lundblad <malu@pidgin.im>
parents:
26644
diff
changeset
|
274 | * Remove a port mapping (UPnP or NAT-PMP) associated with listening socket |
|
8240ab259385
Add a function to remove a port mapping (UPnP or NAT-PMP) given a file
Marcus Lundblad <malu@pidgin.im>
parents:
26644
diff
changeset
|
275 | * |
|
8240ab259385
Add a function to remove a port mapping (UPnP or NAT-PMP) given a file
Marcus Lundblad <malu@pidgin.im>
parents:
26644
diff
changeset
|
276 | * @param fd Socket to remove the port mapping for |
|
8240ab259385
Add a function to remove a port mapping (UPnP or NAT-PMP) given a file
Marcus Lundblad <malu@pidgin.im>
parents:
26644
diff
changeset
|
277 | * @since 2.6.0 |
|
8240ab259385
Add a function to remove a port mapping (UPnP or NAT-PMP) given a file
Marcus Lundblad <malu@pidgin.im>
parents:
26644
diff
changeset
|
278 | */ |
|
29987
59b582625aaf
Strip trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
29686
diff
changeset
|
279 | void purple_network_remove_port_mapping(gint fd); |
|
27332
8240ab259385
Add a function to remove a port mapping (UPnP or NAT-PMP) given a file
Marcus Lundblad <malu@pidgin.im>
parents:
26644
diff
changeset
|
280 | |
|
16035
eb4eda79a147
The network module now registers the signal 'network-configuration-changed' and emits it when a network change is detected via libnm or the win32 network monitor. The UI could also emit this signal if it knows something network.c doesn't. UPnP and NAT-PMP respond to the signal by clearing their IP address caches; changing networks without quitting/relaunching will now lead to the new IP address being (lazily) determined. This commit also enables nat-pmp and adds nat-pmp.[h|c] to the build process; please let me know if there are any problems building, as I only have OS X test machines.
Evan Schoenberg <evands@pidgin.im>
parents:
15884
diff
changeset
|
281 | /** |
|
27898
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
282 | * Convert a UTF-8 domain name to ASCII in accordance with the IDNA |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
283 | * specification. If libpurple is compiled without IDN support, this function |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
284 | * copies the input into the output buffer. |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
285 | * |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
286 | * Because this function is used by DNS resolver child/threads, it uses no |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
287 | * other libpurple API and is threadsafe. |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
288 | * |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
289 | * In general, a buffer of about 512 bytes is the appropriate size to use. |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
290 | * |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
291 | * @param in The hostname to be converted. |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
292 | * @param out The output buffer where an allocated string will be returned. |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
293 | * The caller is responsible for freeing this. |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
294 | * @returns 0 on success, -1 if the out is NULL, or an error code |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
295 | * that currently corresponds to the Idna_rc enum in libidn. |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
296 | * @since 2.6.0 |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
297 | */ |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
298 | int purple_network_convert_idn_to_ascii(const gchar *in, gchar **out); |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
299 | |
|
4a6450d92e11
Move the IDN support into the DNS routines.
Paul Aurich <darkrain42@pidgin.im>
parents:
27404
diff
changeset
|
300 | /** |
| 8231 | 301 | * Initializes the network subsystem. |
| 302 | */ | |
| 15884 | 303 | void purple_network_init(void); |
| 8231 | 304 | |
| 14758 | 305 | /** |
| 306 | * Shuts down the network subsystem. | |
| 307 | */ | |
| 15884 | 308 | void purple_network_uninit(void); |
| 14758 | 309 | |
| 8231 | 310 | /*@}*/ |
| 311 | ||
| 312 | #ifdef __cplusplus | |
| 313 | } | |
| 314 | #endif | |
| 315 | ||
| 15884 | 316 | #endif /* _PURPLE_NETWORK_H_ */ |