2 * @file purple-dnsquery.c
6 * Copyright (C) 2010 SIPE Project <http://sipe.sourceforge.net/>
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.
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.
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
24 #include "win32/win32dep.h" /* for inet_ntop() */
27 #include <arpa/inet.h>
28 #include <netinet/in.h>
36 #include "sipe-backend.h"
38 struct sipe_dns_query
{
43 sipe_dns_resolved_cb callback
;
45 gpointer purple_query_data
;
48 static void dns_a_response(GSList
*hosts
,
49 struct sipe_dns_query
*query
,
50 const char *error_message
)
52 char ipstr
[INET6_ADDRSTRLEN
];
53 struct sockaddr
*addr
;
57 if (error_message
|| !g_slist_next(hosts
)) {
58 query
->callback(query
->extradata
, NULL
, 0);
63 addr
= g_slist_next(hosts
)->data
;
64 if (addr
->sa_family
== AF_INET6
) {
65 /* OS provides addr so it must be properly aligned */
66 struct sockaddr_in6
*sin6
= (void *) addr
;
67 addrdata
= &sin6
->sin6_addr
;
68 port
= sin6
->sin6_port
;
70 /* OS provides addr so it must be properly aligned */
71 struct sockaddr_in
*sin
= (void *) addr
;
72 addrdata
= &sin
->sin_addr
;
76 inet_ntop(addr
->sa_family
, addrdata
, ipstr
, sizeof (ipstr
));
78 query
->callback(query
->extradata
, ipstr
, port
);
80 for (; hosts
; hosts
= g_slist_delete_link(hosts
, hosts
)) {
81 // Free the addrlen, no data in this link
82 hosts
= g_slist_delete_link(hosts
, hosts
);
90 struct sipe_dns_query
*sipe_backend_dns_query_a(const gchar
*hostname
,
92 sipe_dns_resolved_cb callback
,
95 struct sipe_dns_query
*query
= g_new(struct sipe_dns_query
, 1);
97 query
->callback
= callback
;
98 query
->extradata
= data
;
99 query
->purple_query_data
= purple_dnsquery_a(hostname
,
101 (PurpleDnsQueryConnectFunction
) dns_a_response
,
108 static void dns_srv_response(PurpleSrvResponse
*resp
,
110 struct sipe_dns_query
*query
)
113 query
->callback(query
->extradata
, resp
->hostname
, resp
->port
);
115 query
->callback(query
->extradata
, NULL
, 0);
121 struct sipe_dns_query
*sipe_backend_dns_query_srv(const gchar
*protocol
,
122 const gchar
*transport
,
124 sipe_dns_resolved_cb callback
,
127 struct sipe_dns_query
*query
= g_new(struct sipe_dns_query
, 1);
129 query
->callback
= callback
;
130 query
->extradata
= data
;
131 query
->purple_query_data
= purple_srv_resolve(protocol
,
134 (PurpleSrvCallback
) dns_srv_response
,
140 void sipe_backend_dns_query_cancel(struct sipe_dns_query
*query
)
142 switch (query
->type
) {
144 purple_dnsquery_destroy(query
->purple_query_data
);
147 purple_srv_cancel(query
->purple_query_data
);