comparison src/dnssrv.h @ 11373:c84c35ee8202

[gaim-migrate @ 13598] adding async SRV resolver committer: Tailor Script <tailor@pidgin.im>
author Thomas Butter <tbutter>
date Tue, 30 Aug 2005 15:28:49 +0000
parents
children 6d3d44c60a86
comparison
equal deleted inserted replaced
11372:aea5faca82dc 11373:c84c35ee8202
1 /**
2 * @file srvresolve.h
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
33 typedef void (*SRVCallback)(struct srv_response *resp, int results);
34
35 void gaim_srv_resolve(char *protocol, char *transport, char *domain, SRVCallback cb);
36
37 #endif /* _GAIM_DNSSRV_H */