Mercurial > pidgin
annotate src/dnssrv.h @ 11425:54fa445aff32
[gaim-migrate @ 13662]
most stupid bug ever. thanks to datallah for noticing
committer: Tailor Script <tailor@pidgin.im>
author | Thomas Butter <tbutter> |
---|---|
date | Fri, 02 Sep 2005 18:05:40 +0000 |
parents | bdeace860555 |
children | d3b870be8759 |
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") | |
41 * @cb A callback which will be called with the results | |
42 */ | |
11382 | 43 void gaim_srv_resolve(char *protocol, char *transport, char *domain, SRVCallback cb, gpointer extradata); |
11373 | 44 |
45 #endif /* _GAIM_DNSSRV_H */ |