Mercurial > pidgin
annotate src/dnssrv.h @ 12007:8724718d387f
[gaim-migrate @ 14300]
Further updates to gg from Bartosz Oler. This makes the login and token retrieval processes asynchronous. There are also some encoding fixes and various cleanups. There are some changes from me to make it work on win32.
committer: Tailor Script <tailor@pidgin.im>
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Tue, 08 Nov 2005 19:45:09 +0000 |
parents | 9563b768e8e2 |
children | 5f65a0cca87c |
rev | line source |
---|---|
11373 | 1 /** |
11379
51c189755f1d
[gaim-migrate @ 13605]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11374
diff
changeset
|
2 * @file dnssrv.h |
11373 | 3 * |
4 * gaim | |
5 * | |
6 * Copyright (C) 2005, Thomas Butter <butter@uni-mannheim.de> | |
7 * | |
8 * This program is free software; you can redistribute it and/or modify | |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program; if not, write to the Free Software | |
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
21 */ | |
22 | |
23 #ifndef _GAIM_DNSSRV_H | |
24 #define _GAIM_DNSSRV_H | |
25 | |
26 struct srv_response { | |
27 char hostname[256]; | |
28 int port; | |
29 int weight; | |
30 int pref; | |
31 }; | |
32 | |
11382 | 33 typedef void (*SRVCallback)(struct srv_response *resp, int results, gpointer data); |
11373 | 34 |
11374 | 35 /** |
36 * Queries an SRV record. | |
37 * | |
38 * @param protocol Name of the protocol (e.g. "sip") | |
39 * @param transport Name of the transport ("tcp" or "udp") | |
40 * @param domain Domainname to query (e.g. "blubb.com") | |
11501
9563b768e8e2
[gaim-migrate @ 13746]
Richard Laager <rlaager@wiktel.com>
parents:
11444
diff
changeset
|
41 * @param cb A callback which will be called with the results |
9563b768e8e2
[gaim-migrate @ 13746]
Richard Laager <rlaager@wiktel.com>
parents:
11444
diff
changeset
|
42 * @param extradata Extra data to be passed to the callback |
11374 | 43 */ |
11444
d3b870be8759
[gaim-migrate @ 13683]
Richard Laager <rlaager@wiktel.com>
parents:
11382
diff
changeset
|
44 void gaim_srv_resolve(const char *protocol, const char *transport, const char *domain, SRVCallback cb, gpointer extradata); |
11373 | 45 |
46 #endif /* _GAIM_DNSSRV_H */ |