Sat, 18 Aug 2007 05:54:49 +0000
- Add purple_certificate_display_x509
| 11477 | 1 | /* |
| 2 | * This program is free software; you can redistribute it and/or modify | |
| 3 | * it under the terms of the GNU General Public License as published by | |
| 4 | * the Free Software Foundation; either version 2 of the License, or | |
| 5 | * (at your option) any later version. | |
| 6 | * | |
| 7 | * This program is distributed in the hope that it will be useful, | |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 10 | * GNU Library General Public License for more details. | |
| 11 | * | |
| 12 | * You should have received a copy of the GNU General Public License | |
| 13 | * along with this program; if not, write to the Free Software | |
| 14 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
| 15 | */ | |
| 16 | ||
|
19039
32d30f9255df
More internal.h includes to fix G_GNUC_NULL_TERMINATED undefined errors
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18556
diff
changeset
|
17 | #include "internal.h" |
| 11477 | 18 | |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
19 | #include "mdns_interface.h" |
|
17596
45f6190fe54a
This is a patch from Chris Davies to make Bonjour work on Windows using the Apple Bonjour framework. It turns out that the actual DNS-SD library is (3 clause) BSD licensed, so we can use it.
Daniel Atallah <datallah@pidgin.im>
parents:
15884
diff
changeset
|
20 | #include "debug.h" |
| 11477 | 21 | #include "buddy.h" |
| 22 | ||
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
23 | #include <howl.h> |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
24 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
25 | /* data used by howl bonjour implementation */ |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
26 | typedef struct _howl_impl_data { |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
27 | sw_discovery session; |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
28 | sw_discovery_oid session_id; |
|
19204
ccc7ec4ea4dc
Some more minor mdns implementation abstraction tweaks and implementation of setting buddy icons for the win32 bonjour implementation.
Daniel Atallah <datallah@pidgin.im>
parents:
19099
diff
changeset
|
29 | guint session_handler; |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
30 | } HowlSessionImplData; |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
31 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
32 | static sw_result HOWL_API |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
33 | _publish_reply(sw_discovery discovery, sw_discovery_oid oid, |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
34 | sw_discovery_publish_status status, sw_opaque extra) |
| 11477 | 35 | { |
| 15884 | 36 | purple_debug_warning("bonjour", "_publish_reply --> Start\n"); |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
37 | |
|
11829
8d89f3c00831
[gaim-migrate @ 14120]
Richard Laager <rlaager@pidgin.im>
parents:
11773
diff
changeset
|
38 | /* Check the answer from the mDNS daemon */ |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
39 | switch (status) |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
40 | { |
| 11477 | 41 | case SW_DISCOVERY_PUBLISH_STARTED : |
| 15884 | 42 | purple_debug_info("bonjour", "_publish_reply --> Service started\n"); |
| 11477 | 43 | break; |
| 44 | case SW_DISCOVERY_PUBLISH_STOPPED : | |
| 15884 | 45 | purple_debug_info("bonjour", "_publish_reply --> Service stopped\n"); |
| 11477 | 46 | break; |
| 47 | case SW_DISCOVERY_PUBLISH_NAME_COLLISION : | |
| 15884 | 48 | purple_debug_info("bonjour", "_publish_reply --> Name collision\n"); |
| 11477 | 49 | break; |
| 50 | case SW_DISCOVERY_PUBLISH_INVALID : | |
| 15884 | 51 | purple_debug_info("bonjour", "_publish_reply --> Service invalid\n"); |
| 11477 | 52 | break; |
| 53 | } | |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
54 | |
| 11477 | 55 | return SW_OKAY; |
| 56 | } | |
| 57 | ||
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
58 | static sw_result HOWL_API |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
59 | _resolve_reply(sw_discovery discovery, sw_discovery_oid oid, |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
60 | sw_uint32 interface_index, sw_const_string name, |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
61 | sw_const_string type, sw_const_string domain, |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
62 | sw_ipv4_address address, sw_port port, |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
63 | sw_octets text_record, sw_ulong text_record_len, |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
64 | sw_opaque extra) |
| 11477 | 65 | { |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
66 | BonjourBuddy *buddy; |
| 15884 | 67 | PurpleAccount *account = (PurpleAccount*)extra; |
| 11477 | 68 | gint address_length = 16; |
| 69 | sw_text_record_iterator iterator; | |
|
11498
e48f1ed75fd7
[gaim-migrate @ 13743]
Mark Doliner <markdoliner@pidgin.im>
parents:
11496
diff
changeset
|
70 | char key[SW_TEXT_RECORD_MAX_LEN]; |
|
e48f1ed75fd7
[gaim-migrate @ 13743]
Mark Doliner <markdoliner@pidgin.im>
parents:
11496
diff
changeset
|
71 | char value[SW_TEXT_RECORD_MAX_LEN]; |
| 11477 | 72 | sw_uint32 value_length; |
| 73 | ||
| 74 | sw_discovery_cancel(discovery, oid); | |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
75 | |
|
17596
45f6190fe54a
This is a patch from Chris Davies to make Bonjour work on Windows using the Apple Bonjour framework. It turns out that the actual DNS-SD library is (3 clause) BSD licensed, so we can use it.
Daniel Atallah <datallah@pidgin.im>
parents:
15884
diff
changeset
|
76 | /* create a buddy record */ |
|
45f6190fe54a
This is a patch from Chris Davies to make Bonjour work on Windows using the Apple Bonjour framework. It turns out that the actual DNS-SD library is (3 clause) BSD licensed, so we can use it.
Daniel Atallah <datallah@pidgin.im>
parents:
15884
diff
changeset
|
77 | buddy = bonjour_buddy_new(name, account); |
|
45f6190fe54a
This is a patch from Chris Davies to make Bonjour work on Windows using the Apple Bonjour framework. It turns out that the actual DNS-SD library is (3 clause) BSD licensed, so we can use it.
Daniel Atallah <datallah@pidgin.im>
parents:
15884
diff
changeset
|
78 | |
|
11829
8d89f3c00831
[gaim-migrate @ 14120]
Richard Laager <rlaager@pidgin.im>
parents:
11773
diff
changeset
|
79 | /* Get the ip as a string */ |
|
17596
45f6190fe54a
This is a patch from Chris Davies to make Bonjour work on Windows using the Apple Bonjour framework. It turns out that the actual DNS-SD library is (3 clause) BSD licensed, so we can use it.
Daniel Atallah <datallah@pidgin.im>
parents:
15884
diff
changeset
|
80 | buddy->ip = g_malloc(address_length); |
|
45f6190fe54a
This is a patch from Chris Davies to make Bonjour work on Windows using the Apple Bonjour framework. It turns out that the actual DNS-SD library is (3 clause) BSD licensed, so we can use it.
Daniel Atallah <datallah@pidgin.im>
parents:
15884
diff
changeset
|
81 | sw_ipv4_address_name(address, buddy->ip, address_length); |
|
45f6190fe54a
This is a patch from Chris Davies to make Bonjour work on Windows using the Apple Bonjour framework. It turns out that the actual DNS-SD library is (3 clause) BSD licensed, so we can use it.
Daniel Atallah <datallah@pidgin.im>
parents:
15884
diff
changeset
|
82 | |
|
45f6190fe54a
This is a patch from Chris Davies to make Bonjour work on Windows using the Apple Bonjour framework. It turns out that the actual DNS-SD library is (3 clause) BSD licensed, so we can use it.
Daniel Atallah <datallah@pidgin.im>
parents:
15884
diff
changeset
|
83 | buddy->port_p2pj = port; |
| 11477 | 84 | |
|
11829
8d89f3c00831
[gaim-migrate @ 14120]
Richard Laager <rlaager@pidgin.im>
parents:
11773
diff
changeset
|
85 | /* Obtain the parameters from the text_record */ |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
86 | if ((text_record_len > 0) && (text_record) && (*text_record != '\0')) |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
87 | { |
|
19220
60d667d6bdc5
Clear bonjour buddy values before resetting them so that we notice value removals.
Daniel Atallah <datallah@pidgin.im>
parents:
19210
diff
changeset
|
88 | clear_bonjour_buddy_values(buddy); |
| 11477 | 89 | sw_text_record_iterator_init(&iterator, text_record, text_record_len); |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
90 | while (sw_text_record_iterator_next(iterator, key, (sw_octet *)value, &value_length) == SW_OKAY) |
|
17611
1f221c4f82d6
Improve bonjour buddy TXT record parsing.
Daniel Atallah <datallah@pidgin.im>
parents:
17610
diff
changeset
|
91 | set_bonjour_buddy_value(buddy, key, value, value_length); |
|
1f221c4f82d6
Improve bonjour buddy TXT record parsing.
Daniel Atallah <datallah@pidgin.im>
parents:
17610
diff
changeset
|
92 | |
|
1f221c4f82d6
Improve bonjour buddy TXT record parsing.
Daniel Atallah <datallah@pidgin.im>
parents:
17610
diff
changeset
|
93 | sw_text_record_iterator_fina(iterator); |
| 11477 | 94 | } |
| 95 | ||
|
17596
45f6190fe54a
This is a patch from Chris Davies to make Bonjour work on Windows using the Apple Bonjour framework. It turns out that the actual DNS-SD library is (3 clause) BSD licensed, so we can use it.
Daniel Atallah <datallah@pidgin.im>
parents:
15884
diff
changeset
|
96 | if (!bonjour_buddy_check(buddy)) |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
97 | { |
|
13650
8c1043337393
[gaim-migrate @ 16050]
Mark Doliner <markdoliner@pidgin.im>
parents:
13063
diff
changeset
|
98 | bonjour_buddy_delete(buddy); |
| 11477 | 99 | return SW_DISCOVERY_E_UNKNOWN; |
| 100 | } | |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
101 | |
|
11496
0f61069a4a3f
[gaim-migrate @ 13740]
Mark Doliner <markdoliner@pidgin.im>
parents:
11477
diff
changeset
|
102 | /* Add or update the buddy in our buddy list */ |
|
17596
45f6190fe54a
This is a patch from Chris Davies to make Bonjour work on Windows using the Apple Bonjour framework. It turns out that the actual DNS-SD library is (3 clause) BSD licensed, so we can use it.
Daniel Atallah <datallah@pidgin.im>
parents:
15884
diff
changeset
|
103 | bonjour_buddy_add_to_purple(buddy); |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
104 | |
| 11477 | 105 | return SW_OKAY; |
| 106 | } | |
| 107 | ||
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
108 | static sw_result HOWL_API |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
109 | _browser_reply(sw_discovery discovery, sw_discovery_oid oid, |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
110 | sw_discovery_browse_status status, |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
111 | sw_uint32 interface_index, sw_const_string name, |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
112 | sw_const_string type, sw_const_string domain, |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
113 | sw_opaque_t extra) |
| 11477 | 114 | { |
| 115 | sw_discovery_resolve_id rid; | |
| 15884 | 116 | PurpleAccount *account = (PurpleAccount*)extra; |
| 117 | PurpleBuddy *gb = NULL; | |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
118 | |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
119 | switch (status) |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
120 | { |
| 11477 | 121 | case SW_DISCOVERY_BROWSE_INVALID: |
| 15884 | 122 | purple_debug_warning("bonjour", "_browser_reply --> Invalid\n"); |
| 11477 | 123 | break; |
| 124 | case SW_DISCOVERY_BROWSE_RELEASE: | |
| 15884 | 125 | purple_debug_warning("bonjour", "_browser_reply --> Release\n"); |
| 11477 | 126 | break; |
| 127 | case SW_DISCOVERY_BROWSE_ADD_DOMAIN: | |
| 15884 | 128 | purple_debug_warning("bonjour", "_browser_reply --> Add domain\n"); |
| 11477 | 129 | break; |
| 130 | case SW_DISCOVERY_BROWSE_ADD_DEFAULT_DOMAIN: | |
| 15884 | 131 | purple_debug_warning("bonjour", "_browser_reply --> Add default domain\n"); |
| 11477 | 132 | break; |
| 133 | case SW_DISCOVERY_BROWSE_REMOVE_DOMAIN: | |
| 15884 | 134 | purple_debug_warning("bonjour", "_browser_reply --> Remove domain\n"); |
| 11477 | 135 | break; |
| 136 | case SW_DISCOVERY_BROWSE_ADD_SERVICE: | |
| 13971 | 137 | /* A new peer has joined the network and uses iChat bonjour */ |
| 15884 | 138 | purple_debug_info("bonjour", "_browser_reply --> Add service\n"); |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
139 | if (g_ascii_strcasecmp(name, account->username) != 0) |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
140 | { |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
141 | if (sw_discovery_resolve(discovery, interface_index, name, type, |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
142 | domain, _resolve_reply, extra, &rid) != SW_OKAY) |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
143 | { |
| 15884 | 144 | purple_debug_warning("bonjour", "_browser_reply --> Cannot send resolve\n"); |
| 11477 | 145 | } |
| 146 | } | |
| 147 | break; | |
| 148 | case SW_DISCOVERY_BROWSE_REMOVE_SERVICE: | |
| 15884 | 149 | purple_debug_info("bonjour", "_browser_reply --> Remove service\n"); |
|
19099
4dc7e4a3a82b
More minor leak fixes and cleanup to bonjour.
Daniel Atallah <datallah@pidgin.im>
parents:
19095
diff
changeset
|
150 | gb = purple_find_buddy(account, name); |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
151 | if (gb != NULL) |
|
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
152 | { |
| 11477 | 153 | bonjour_buddy_delete(gb->proto_data); |
| 15884 | 154 | purple_blist_remove_buddy(gb); |
| 11477 | 155 | } |
| 156 | break; | |
| 157 | case SW_DISCOVERY_BROWSE_RESOLVED: | |
| 15884 | 158 | purple_debug_info("bonjour", "_browse_reply --> Resolved\n"); |
| 11477 | 159 | break; |
| 160 | default: | |
| 161 | break; | |
| 162 | } | |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
163 | |
| 11477 | 164 | return SW_OKAY; |
| 165 | } | |
| 166 | ||
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
167 | static void |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
168 | _mdns_handle_event(gpointer data, gint source, PurpleInputCondition condition) |
| 11477 | 169 | { |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
170 | sw_discovery_read_socket((sw_discovery)data); |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
171 | } |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
172 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
173 | /**************************** |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
174 | * mdns_interface functions * |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
175 | ****************************/ |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
176 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
177 | gboolean _mdns_init_session(BonjourDnsSd *data) { |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
178 | HowlSessionImplData *idata = g_new0(HowlSessionImplData, 1); |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
179 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
180 | if (sw_discovery_init(&idata->session) != SW_OKAY) { |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
181 | purple_debug_error("bonjour", "Unable to initialize an mDNS session.\n"); |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
182 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
183 | /* In Avahi, sw_discovery_init frees data->session but doesn't clear it */ |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
184 | idata->session = NULL; |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
185 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
186 | g_free(idata); |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
187 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
188 | return FALSE; |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
189 | } |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
190 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
191 | data->mdns_impl_data = idata; |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
192 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
193 | return TRUE; |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
194 | } |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
195 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
196 | |
| 19221 | 197 | gboolean _mdns_publish(BonjourDnsSd *data, PublishType type, GSList *records) { |
| 11477 | 198 | sw_text_record dns_data; |
|
11773
009a22a5ce53
[gaim-migrate @ 14064]
Gary Kramlich <grim@reaperworld.com>
parents:
11678
diff
changeset
|
199 | sw_result publish_result = SW_OKAY; |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
200 | HowlSessionImplData *idata = data->mdns_impl_data; |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
201 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
202 | g_return_val_if_fail(idata != NULL, FALSE); |
| 11477 | 203 | |
|
11829
8d89f3c00831
[gaim-migrate @ 14120]
Richard Laager <rlaager@pidgin.im>
parents:
11773
diff
changeset
|
204 | /* Fill the data for the service */ |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
205 | if (sw_text_record_init(&dns_data) != SW_OKAY) { |
| 15884 | 206 | purple_debug_error("bonjour", "Unable to initialize the data for the mDNS.\n"); |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
207 | return FALSE; |
| 11477 | 208 | } |
| 209 | ||
| 19221 | 210 | while (records) { |
| 211 | PurpleKeyValuePair *kvp = records->data; | |
| 212 | sw_text_record_add_key_and_string_value(dns_data, kvp->key, kvp->value); | |
| 213 | records = records->next; | |
| 214 | } | |
| 11477 | 215 | |
|
11829
8d89f3c00831
[gaim-migrate @ 14120]
Richard Laager <rlaager@pidgin.im>
parents:
11773
diff
changeset
|
216 | /* Publish the service */ |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
217 | switch (type) { |
| 11477 | 218 | case PUBLISH_START: |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
219 | publish_result = sw_discovery_publish(idata->session, 0, purple_account_get_username(data->account), ICHAT_SERVICE, NULL, |
|
11539
fbabe3f89777
[gaim-migrate @ 13794]
Mark Doliner <markdoliner@pidgin.im>
parents:
11515
diff
changeset
|
220 | NULL, data->port_p2pj, sw_text_record_bytes(dns_data), sw_text_record_len(dns_data), |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
221 | _publish_reply, NULL, &idata->session_id); |
| 11477 | 222 | break; |
| 223 | case PUBLISH_UPDATE: | |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
224 | publish_result = sw_discovery_publish_update(idata->session, idata->session_id, |
| 11477 | 225 | sw_text_record_bytes(dns_data), sw_text_record_len(dns_data)); |
| 226 | break; | |
| 227 | } | |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
228 | |
|
19099
4dc7e4a3a82b
More minor leak fixes and cleanup to bonjour.
Daniel Atallah <datallah@pidgin.im>
parents:
19095
diff
changeset
|
229 | /* Free the memory used by temp data */ |
|
4dc7e4a3a82b
More minor leak fixes and cleanup to bonjour.
Daniel Atallah <datallah@pidgin.im>
parents:
19095
diff
changeset
|
230 | sw_text_record_fina(dns_data); |
|
4dc7e4a3a82b
More minor leak fixes and cleanup to bonjour.
Daniel Atallah <datallah@pidgin.im>
parents:
19095
diff
changeset
|
231 | |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
232 | if (publish_result != SW_OKAY) { |
|
19099
4dc7e4a3a82b
More minor leak fixes and cleanup to bonjour.
Daniel Atallah <datallah@pidgin.im>
parents:
19095
diff
changeset
|
233 | purple_debug_error("bonjour", "Unable to publish or change the status of the " ICHAT_SERVICE " service.\n"); |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
234 | return FALSE; |
| 11477 | 235 | } |
| 236 | ||
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
237 | return TRUE; |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
238 | } |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
239 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
240 | gboolean _mdns_browse(BonjourDnsSd *data) { |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
241 | HowlSessionImplData *idata = data->mdns_impl_data; |
|
19095
969019168756
Fix howl bonjour build.
Daniel Atallah <datallah@pidgin.im>
parents:
19094
diff
changeset
|
242 | /* TODO: don't we need to hang onto this to cancel later? */ |
|
969019168756
Fix howl bonjour build.
Daniel Atallah <datallah@pidgin.im>
parents:
19094
diff
changeset
|
243 | sw_discovery_oid session_id; |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
244 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
245 | g_return_val_if_fail(idata != NULL, FALSE); |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
246 | |
|
19204
ccc7ec4ea4dc
Some more minor mdns implementation abstraction tweaks and implementation of setting buddy icons for the win32 bonjour implementation.
Daniel Atallah <datallah@pidgin.im>
parents:
19099
diff
changeset
|
247 | if (sw_discovery_browse(idata->session, 0, ICHAT_SERVICE, NULL, _browser_reply, |
|
ccc7ec4ea4dc
Some more minor mdns implementation abstraction tweaks and implementation of setting buddy icons for the win32 bonjour implementation.
Daniel Atallah <datallah@pidgin.im>
parents:
19099
diff
changeset
|
248 | data->account, &session_id) == SW_OKAY) { |
|
ccc7ec4ea4dc
Some more minor mdns implementation abstraction tweaks and implementation of setting buddy icons for the win32 bonjour implementation.
Daniel Atallah <datallah@pidgin.im>
parents:
19099
diff
changeset
|
249 | idata->session_handler = purple_input_add(sw_discovery_socket(idata->session), |
|
ccc7ec4ea4dc
Some more minor mdns implementation abstraction tweaks and implementation of setting buddy icons for the win32 bonjour implementation.
Daniel Atallah <datallah@pidgin.im>
parents:
19099
diff
changeset
|
250 | PURPLE_INPUT_READ, _mdns_handle_event, idata->session); |
|
ccc7ec4ea4dc
Some more minor mdns implementation abstraction tweaks and implementation of setting buddy icons for the win32 bonjour implementation.
Daniel Atallah <datallah@pidgin.im>
parents:
19099
diff
changeset
|
251 | return TRUE; |
|
ccc7ec4ea4dc
Some more minor mdns implementation abstraction tweaks and implementation of setting buddy icons for the win32 bonjour implementation.
Daniel Atallah <datallah@pidgin.im>
parents:
19099
diff
changeset
|
252 | } |
|
ccc7ec4ea4dc
Some more minor mdns implementation abstraction tweaks and implementation of setting buddy icons for the win32 bonjour implementation.
Daniel Atallah <datallah@pidgin.im>
parents:
19099
diff
changeset
|
253 | |
|
ccc7ec4ea4dc
Some more minor mdns implementation abstraction tweaks and implementation of setting buddy icons for the win32 bonjour implementation.
Daniel Atallah <datallah@pidgin.im>
parents:
19099
diff
changeset
|
254 | return FALSE; |
| 11477 | 255 | } |
| 256 | ||
|
19206
ed0343b92c15
Fix bonjour buddy icons to work with iChat.
Daniel Atallah <datallah@pidgin.im>
parents:
19204
diff
changeset
|
257 | gboolean _mdns_set_buddy_icon_data(BonjourDnsSd *data, gconstpointer avatar_data, gsize avatar_len) { |
|
ed0343b92c15
Fix bonjour buddy icons to work with iChat.
Daniel Atallah <datallah@pidgin.im>
parents:
19204
diff
changeset
|
258 | return FALSE; |
|
19204
ccc7ec4ea4dc
Some more minor mdns implementation abstraction tweaks and implementation of setting buddy icons for the win32 bonjour implementation.
Daniel Atallah <datallah@pidgin.im>
parents:
19099
diff
changeset
|
259 | } |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
260 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
261 | void _mdns_stop(BonjourDnsSd *data) { |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
262 | HowlSessionImplData *idata = data->mdns_impl_data; |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
263 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
264 | if (idata == NULL || idata->session == NULL) |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
265 | return; |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
266 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
267 | sw_discovery_cancel(idata->session, idata->session_id); |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
268 | |
|
19204
ccc7ec4ea4dc
Some more minor mdns implementation abstraction tweaks and implementation of setting buddy icons for the win32 bonjour implementation.
Daniel Atallah <datallah@pidgin.im>
parents:
19099
diff
changeset
|
269 | purple_input_remove(idata->session_handler); |
|
ccc7ec4ea4dc
Some more minor mdns implementation abstraction tweaks and implementation of setting buddy icons for the win32 bonjour implementation.
Daniel Atallah <datallah@pidgin.im>
parents:
19099
diff
changeset
|
270 | |
|
19093
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
271 | /* TODO: should this really be g_free()'d ??? */ |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
272 | g_free(idata->session); |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
273 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
274 | g_free(idata); |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
275 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
276 | data->mdns_impl_data = NULL; |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
277 | } |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
278 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
279 | void _mdns_init_buddy(BonjourBuddy *buddy) { |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
280 | } |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
281 | |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
282 | void _mdns_delete_buddy(BonjourBuddy *buddy) { |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
283 | } |
|
b2657106df0e
Refactor the bonjour mdns implementation abstraction in preparation for the avahi implementation. Also fix alias assignment from the server to populate the server alias instead of the local alias.
Daniel Atallah <datallah@pidgin.im>
parents:
19039
diff
changeset
|
284 | |
|
19210
4dcb230b1dbd
_mdns_retrieve_retrieve_buddy_icon() - what kind of crack am I on anyway?
Daniel Atallah <datallah@pidgin.im>
parents:
19206
diff
changeset
|
285 | void _mdns_retrieve_buddy_icon(BonjourBuddy* buddy) { |
|
19094
b4d0fe1a515a
Implement bonjour buddy icons in the win32 implementation. Avahi's howl wrapper doesn't implement sw_discovery_query_record(), so we can't do it elsewhere yet.
Daniel Atallah <datallah@pidgin.im>
parents:
19093
diff
changeset
|
286 | } |
|
19204
ccc7ec4ea4dc
Some more minor mdns implementation abstraction tweaks and implementation of setting buddy icons for the win32 bonjour implementation.
Daniel Atallah <datallah@pidgin.im>
parents:
19099
diff
changeset
|
287 | |
|
ccc7ec4ea4dc
Some more minor mdns implementation abstraction tweaks and implementation of setting buddy icons for the win32 bonjour implementation.
Daniel Atallah <datallah@pidgin.im>
parents:
19099
diff
changeset
|
288 |