Mercurial > pidgin
annotate src/protocols/simple/simple.c @ 13088:a91a8a28f61f
[gaim-migrate @ 15450]
Compile warning fixes
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Wed, 01 Feb 2006 06:04:22 +0000 |
| parents | 3382d7aa9ca3 |
| children | edef744647ff |
| rev | line source |
|---|---|
| 11181 | 1 /** |
| 2 * @file simple.c | |
| 3 * | |
| 4 * gaim | |
| 5 * | |
| 6 * Copyright (C) 2005 Thomas Butter <butter@uni-mannheim.de> | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
7 * |
| 11345 | 8 * *** |
| 9 * Thanks to Google's Summer of Code Program and the helpful mentors | |
| 10 * *** | |
| 11181 | 11 * |
| 12 * This program is free software; you can redistribute it and/or modify | |
| 13 * it under the terms of the GNU General Public License as published by | |
| 14 * the Free Software Foundation; either version 2 of the License, or | |
| 15 * (at your option) any later version. | |
| 16 * | |
| 17 * This program is distributed in the hope that it will be useful, | |
| 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 20 * GNU General Public License for more details. | |
| 21 * | |
| 22 * You should have received a copy of the GNU General Public License | |
| 23 * along with this program; if not, write to the Free Software | |
| 24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 25 */ | |
| 26 | |
| 27 #include "internal.h" | |
| 28 | |
| 29 #include "accountopt.h" | |
| 30 #include "blist.h" | |
| 31 #include "conversation.h" | |
| 32 #include "debug.h" | |
| 33 #include "notify.h" | |
| 11345 | 34 #include "privacy.h" |
| 11181 | 35 #include "prpl.h" |
| 36 #include "plugin.h" | |
| 37 #include "util.h" | |
| 38 #include "version.h" | |
| 39 #include "network.h" | |
| 40 #include "xmlnode.h" | |
| 41 | |
| 42 #include "simple.h" | |
| 43 #include "sipmsg.h" | |
| 11383 | 44 #include "dnssrv.h" |
| 11409 | 45 #include "ntlm.h" |
| 11181 | 46 |
| 47 static char *gentag() { | |
| 48 return g_strdup_printf("%04d%04d", rand() & 0xFFFF, rand() & 0xFFFF); | |
| 49 } | |
| 50 | |
| 51 static char *genbranch() { | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
52 return g_strdup_printf("z9hG4bK%04X%04X%04X%04X%04X", |
|
12767
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
53 rand() & 0xFFFF, rand() & 0xFFFF, rand() & 0xFFFF, |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
54 rand() & 0xFFFF, rand() & 0xFFFF); |
| 11181 | 55 } |
| 56 | |
| 57 static char *gencallid() { | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
58 return g_strdup_printf("%04Xg%04Xa%04Xi%04Xm%04Xt%04Xb%04Xx%04Xx", |
|
12767
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
59 rand() & 0xFFFF, rand() & 0xFFFF, rand() & 0xFFFF, |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
60 rand() & 0xFFFF, rand() & 0xFFFF, rand() & 0xFFFF, |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
61 rand() & 0xFFFF, rand() & 0xFFFF); |
| 11181 | 62 } |
| 63 | |
| 12760 | 64 static char *get_my_ip() { |
| 65 static char my_ip[42]; | |
| 66 const char *tmp = gaim_network_get_public_ip(); | |
| 67 | |
| 68 if(!tmp || !strcmp(tmp,"0.0.0.0")) { | |
| 69 tmp = gaim_network_get_my_ip(-1); | |
| 70 } | |
|
12770
ab00cea25ef2
[gaim-migrate @ 15117]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12769
diff
changeset
|
71 strcpy(my_ip, tmp ? tmp : "0.0.0.0"); |
| 12760 | 72 return my_ip; |
| 73 } | |
| 74 | |
| 11181 | 75 static const char *simple_list_icon(GaimAccount *a, GaimBuddy *b) { |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
76 return "simple"; |
| 11181 | 77 } |
| 78 | |
| 79 static void simple_keep_alive(GaimConnection *gc) { | |
| 11194 | 80 struct simple_account_data *sip = gc->proto_data; |
| 11341 | 81 if(sip->udp) { /* in case of UDP send a packet only with a 0 byte to |
| 82 remain in the NAT table */ | |
| 11194 | 83 gchar buf[2]={0,0}; |
| 84 gaim_debug_info("simple", "sending keep alive\n"); | |
| 85 sendto(sip->fd, buf, 1, 0, (struct sockaddr*)&sip->serveraddr, sizeof(struct sockaddr_in)); | |
| 86 } | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
87 return; |
| 11181 | 88 } |
| 89 | |
| 90 static gboolean process_register_response(struct simple_account_data *sip, struct sipmsg *msg, struct transaction *tc); | |
| 91 static void send_notify(struct simple_account_data *sip, struct simple_watcher *); | |
| 92 | |
| 93 static void send_publish(struct simple_account_data *sip); | |
| 94 | |
| 95 static void do_notifies(struct simple_account_data *sip) { | |
| 96 GSList *tmp = sip->watcher; | |
| 97 gaim_debug_info("simple", "do_notifies()\n"); | |
| 11345 | 98 if((sip->republish != -1) || sip->republish < time(NULL)) { |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
99 if(gaim_account_get_bool(sip->account, "dopublish", TRUE)) { |
| 11345 | 100 send_publish(sip); |
| 101 } | |
| 102 } | |
| 11181 | 103 |
| 104 while(tmp) { | |
| 105 gaim_debug_info("simple", "notifying %s\n", ((struct simple_watcher*)tmp->data)->name); | |
| 106 send_notify(sip, tmp->data); | |
| 107 tmp = tmp->next; | |
| 108 } | |
| 109 } | |
| 110 | |
| 111 static void simple_set_status(GaimAccount *account, GaimStatus *status) { | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
112 GaimStatusPrimitive primitive = gaim_status_type_get_primitive(gaim_status_get_type(status)); |
| 11181 | 113 struct simple_account_data *sip = NULL; |
| 11718 | 114 |
| 11181 | 115 if (!gaim_status_is_active(status)) |
| 116 return; | |
| 117 | |
| 11718 | 118 if (account->gc) |
| 119 sip = account->gc->proto_data; | |
| 120 | |
| 121 if (sip) | |
| 122 { | |
| 11650 | 123 g_free(sip->status); |
| 11718 | 124 if (primitive == GAIM_STATUS_AVAILABLE) |
| 125 sip->status = g_strdup("available"); | |
| 126 else | |
| 127 sip->status = g_strdup("busy"); | |
| 11181 | 128 |
| 129 do_notifies(sip); | |
| 130 } | |
| 131 } | |
| 132 | |
| 133 static struct sip_connection *connection_find(struct simple_account_data *sip, int fd) { | |
| 134 struct sip_connection *ret = NULL; | |
| 135 GSList *entry = sip->openconns; | |
| 136 while(entry) { | |
| 137 ret = entry->data; | |
| 138 if(ret->fd == fd) return ret; | |
| 139 entry = entry->next; | |
| 140 } | |
| 141 return NULL; | |
| 142 } | |
| 143 | |
| 144 static struct simple_watcher *watcher_find(struct simple_account_data *sip, gchar *name) { | |
| 145 struct simple_watcher *watcher; | |
| 146 GSList *entry = sip->watcher; | |
| 147 while(entry) { | |
| 148 watcher = entry->data; | |
| 149 if(!strcmp(name, watcher->name)) return watcher; | |
| 150 entry = entry->next; | |
| 151 } | |
| 152 return NULL; | |
| 153 } | |
| 154 | |
| 155 static struct simple_watcher *watcher_create(struct simple_account_data *sip, gchar *name, gchar *callid, gchar *ourtag, gchar *theirtag) { | |
| 156 struct simple_watcher *watcher = g_new0(struct simple_watcher,1); | |
| 157 watcher->name = g_strdup(name); | |
| 158 watcher->dialog.callid = g_strdup(callid); | |
| 159 watcher->dialog.ourtag = g_strdup(ourtag); | |
| 160 watcher->dialog.theirtag = g_strdup(theirtag); | |
| 161 sip->watcher = g_slist_append(sip->watcher, watcher); | |
| 162 return watcher; | |
| 163 } | |
| 164 | |
| 165 static void watcher_remove(struct simple_account_data *sip, gchar *name) { | |
| 166 struct simple_watcher *watcher = watcher_find(sip, name); | |
| 167 sip->watcher = g_slist_remove(sip->watcher, watcher); | |
| 168 g_free(watcher->name); | |
| 169 g_free(watcher->dialog.callid); | |
| 170 g_free(watcher->dialog.ourtag); | |
| 171 g_free(watcher->dialog.theirtag); | |
| 172 g_free(watcher); | |
| 173 } | |
| 174 | |
| 175 static struct sip_connection *connection_create(struct simple_account_data *sip, int fd) { | |
| 176 struct sip_connection *ret = g_new0(struct sip_connection,1); | |
| 177 ret->fd = fd; | |
| 178 sip->openconns = g_slist_append(sip->openconns, ret); | |
| 179 return ret; | |
| 180 } | |
| 181 | |
| 182 static void connection_remove(struct simple_account_data *sip, int fd) { | |
| 183 struct sip_connection *conn = connection_find(sip, fd); | |
| 184 sip->openconns = g_slist_remove(sip->openconns, conn); | |
| 185 if(conn->inputhandler) gaim_input_remove(conn->inputhandler); | |
| 11650 | 186 g_free(conn->inbuf); |
| 11181 | 187 g_free(conn); |
| 188 } | |
| 189 | |
| 11346 | 190 static void connection_free_all(struct simple_account_data *sip) { |
| 191 struct sip_connection *ret = NULL; | |
| 192 GSList *entry = sip->openconns; | |
| 193 while(entry) { | |
| 194 ret = entry->data; | |
| 195 connection_remove(sip, ret->fd); | |
| 196 entry = sip->openconns; | |
| 197 } | |
| 198 } | |
| 199 | |
| 11181 | 200 static void simple_add_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group) |
| 201 { | |
| 202 struct simple_account_data *sip = (struct simple_account_data *)gc->proto_data; | |
| 203 struct simple_buddy *b; | |
| 204 if(strncmp("sip:", buddy->name,4)) { | |
| 12755 | 205 gchar *buf = g_strdup_printf("sip:%s",buddy->name); |
| 206 gaim_blist_rename_buddy(buddy, buf); | |
| 11181 | 207 g_free(buf); |
| 208 } | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
209 if(!g_hash_table_lookup(sip->buddies, buddy->name)) { |
| 11181 | 210 b = g_new0(struct simple_buddy, 1); |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
211 gaim_debug_info("simple","simple_add_buddy %s\n",buddy->name); |
| 11181 | 212 b->name = g_strdup(buddy->name); |
| 213 g_hash_table_insert(sip->buddies, b->name, b); | |
| 214 } else { | |
| 215 gaim_debug_info("simple","buddy %s already in internal list\n", buddy->name); | |
| 216 } | |
| 217 } | |
| 218 | |
| 219 static void simple_get_buddies(GaimConnection *gc) { | |
| 220 GaimBlistNode *gnode, *cnode, *bnode; | |
| 221 | |
| 222 gaim_debug_info("simple","simple_get_buddies\n"); | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
223 |
| 11181 | 224 for(gnode = gaim_get_blist()->root; gnode; gnode = gnode->next) { |
| 225 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) continue; | |
| 226 for(cnode = gnode->child; cnode; cnode = cnode->next) { | |
| 227 if(!GAIM_BLIST_NODE_IS_CONTACT(cnode)) continue; | |
| 228 for(bnode = cnode->child; bnode; bnode = bnode->next) { | |
| 229 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) continue; | |
| 11192 | 230 if(((GaimBuddy*)bnode)->account == gc->account) |
| 231 simple_add_buddy(gc, (GaimBuddy*)bnode, (GaimGroup *)gnode); | |
| 11181 | 232 } |
| 233 } | |
| 234 } | |
| 235 } | |
| 236 | |
| 237 static void simple_remove_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group) | |
| 238 { | |
| 239 struct simple_account_data *sip = (struct simple_account_data *)gc->proto_data; | |
| 240 struct simple_buddy *b = g_hash_table_lookup(sip->buddies, buddy->name); | |
| 241 g_hash_table_remove(sip->buddies, buddy->name); | |
| 242 g_free(b->name); | |
| 243 g_free(b); | |
| 244 } | |
| 245 | |
| 246 static GList *simple_status_types(GaimAccount *acc) { | |
| 247 GaimStatusType *type; | |
| 248 GList *types = NULL; | |
| 12456 | 249 |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
250 type = gaim_status_type_new_with_attrs( |
|
12595
3169cd6727ad
[gaim-migrate @ 14925]
Richard Laager <rlaager@wiktel.com>
parents:
12571
diff
changeset
|
251 GAIM_STATUS_AVAILABLE, NULL, NULL, TRUE, TRUE, FALSE, |
|
3169cd6727ad
[gaim-migrate @ 14925]
Richard Laager <rlaager@wiktel.com>
parents:
12571
diff
changeset
|
252 "message", _("Message"), gaim_value_new(GAIM_TYPE_STRING), |
|
3169cd6727ad
[gaim-migrate @ 14925]
Richard Laager <rlaager@wiktel.com>
parents:
12571
diff
changeset
|
253 NULL); |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
254 types = g_list_append(types, type); |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
255 |
| 12657 | 256 type = gaim_status_type_new_full( |
| 257 GAIM_STATUS_OFFLINE, NULL, NULL, TRUE, TRUE, FALSE); | |
| 258 types = g_list_append(types, type); | |
| 259 | |
| 11181 | 260 return types; |
| 261 } | |
| 262 | |
| 11346 | 263 static gchar *auth_header(struct simple_account_data *sip, struct sip_auth *auth, gchar *method, gchar *target) { |
| 264 gchar noncecount[9]; | |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12216
diff
changeset
|
265 gchar *response; |
| 11346 | 266 gchar *ret; |
| 11409 | 267 gchar *tmp; |
| 13088 | 268 const char *authdomain; |
| 269 const char *authuser; | |
| 270 | |
| 271 authdomain = gaim_account_get_string(sip->account, "authdomain", ""); | |
| 272 authuser = gaim_account_get_string(sip->account, "authuser", sip->username); | |
| 273 | |
| 13084 | 274 if(!authuser || strlen(authuser)<1) { |
| 275 authuser = sip->username; | |
| 276 } | |
| 11409 | 277 |
| 278 if(auth->type == 1) { /* Digest */ | |
| 279 sprintf(noncecount, "%08d", auth->nc++); | |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12216
diff
changeset
|
280 response = gaim_cipher_http_digest_calculate_response( |
|
12389
e024601d45c7
[gaim-migrate @ 14695]
Richard Laager <rlaager@wiktel.com>
parents:
12382
diff
changeset
|
281 "md5", method, target, NULL, NULL, |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12216
diff
changeset
|
282 auth->nonce, noncecount, NULL, auth->digest_session_key); |
| 11409 | 283 gaim_debug(GAIM_DEBUG_MISC, "simple", "response %s\n", response); |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12216
diff
changeset
|
284 |
| 13084 | 285 ret = g_strdup_printf("Digest username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", nc=\"%s\", response=\"%s\"\r\n", authuser, auth->realm, auth->nonce, target, noncecount, response); |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12216
diff
changeset
|
286 g_free(response); |
| 11409 | 287 return ret; |
| 288 } else if(auth->type == 2) { /* NTLM */ | |
| 13084 | 289 if(auth->nc == 3 && auth->nonce) { |
| 290 ret = gaim_ntlm_gen_type3(authuser, sip->password, "gaim", authdomain, auth->nonce, &auth->flags); | |
| 291 tmp = g_strdup_printf("NTLM qop=\"auth\", opaque=\"%s\", realm=\"%s\", targetname=\"%s\", gssapi-data=\"%s\"\r\n", auth->opaque, auth->realm, auth->target, ret); | |
| 11409 | 292 g_free(ret); |
| 293 return tmp; | |
| 294 } | |
| 13084 | 295 tmp = g_strdup_printf("NTLM qop=\"auth\", realm=\"%s\", targetname=\"%s\", gssapi-data=\"\"\r\n", auth->realm, auth->target); |
| 11409 | 296 return tmp; |
| 297 } | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
298 |
| 11346 | 299 sprintf(noncecount, "%08d", auth->nc++); |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12216
diff
changeset
|
300 response = gaim_cipher_http_digest_calculate_response( |
|
12389
e024601d45c7
[gaim-migrate @ 14695]
Richard Laager <rlaager@wiktel.com>
parents:
12382
diff
changeset
|
301 "md5", method, target, NULL, NULL, |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12216
diff
changeset
|
302 auth->nonce, noncecount, NULL, auth->digest_session_key); |
| 11346 | 303 gaim_debug(GAIM_DEBUG_MISC, "simple", "response %s\n", response); |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12216
diff
changeset
|
304 |
| 13084 | 305 ret = g_strdup_printf("Digest username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", nc=\"%s\", response=\"%s\"\r\n", authuser, auth->realm, auth->nonce, target, noncecount, response); |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12216
diff
changeset
|
306 g_free(response); |
| 11346 | 307 return ret; |
| 308 } | |
| 309 | |
|
12746
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
310 static char * parse_attribute(const char *attrname, char *source) { |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
311 char *tmp, *tmp2, *retval = NULL; |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
312 int len = strlen(attrname); |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
313 |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
314 if(!strncmp(source, attrname, len)) { |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
315 tmp = source + len; |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
316 tmp2 = g_strstr_len(tmp, strlen(tmp), "\""); |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
317 if(tmp2) |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
318 retval = g_strndup(tmp, tmp2 - tmp); |
| 13085 | 319 else |
| 320 retval = g_strdup(tmp); | |
|
12746
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
321 } |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
322 |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
323 return retval; |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
324 } |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
325 |
| 11346 | 326 static void fill_auth(struct simple_account_data *sip, gchar *hdr, struct sip_auth *auth) { |
| 11409 | 327 int i=0; |
| 13088 | 328 const char *authuser; |
| 11424 | 329 char *tmp; |
|
11439
617e67e1c985
[gaim-migrate @ 13676]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11424
diff
changeset
|
330 gchar **parts; |
| 13084 | 331 |
| 13088 | 332 authuser = gaim_account_get_string(sip->account, "authuser", sip->username); |
| 333 | |
| 13084 | 334 if(!authuser || strlen(authuser)<1) { |
| 335 authuser = sip->username; | |
| 336 } | |
| 13088 | 337 |
| 11346 | 338 if(!hdr) { |
| 11409 | 339 gaim_debug_error("simple", "fill_auth: hdr==NULL\n"); |
| 11346 | 340 return; |
| 341 } | |
| 11409 | 342 |
| 343 if(!g_strncasecmp(hdr, "NTLM", 4)) { | |
| 344 gaim_debug_info("simple", "found NTLM\n"); | |
| 345 auth->type = 2; | |
| 13084 | 346 if(!strstr(hdr, "gssapi-data")) { |
| 347 gaim_debug_info("simple","here"); | |
| 13085 | 348 parts = g_strsplit(hdr+5, "\", ", 0); |
| 13084 | 349 i = 0; |
| 11424 | 350 while(parts[i]) { |
| 13084 | 351 gaim_debug_info("simple","parts[i] %s\n",parts[i]); |
|
12746
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
352 if((tmp = parse_attribute("targetname=\"", |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
353 parts[i]))) { |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
354 auth->target = tmp; |
| 11424 | 355 } |
|
12746
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
356 else if((tmp = parse_attribute("realm=\"", |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
357 parts[i]))) { |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
358 auth->realm = tmp; |
| 11424 | 359 } |
| 360 i++; | |
| 361 } | |
|
11439
617e67e1c985
[gaim-migrate @ 13676]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11424
diff
changeset
|
362 g_strfreev(parts); |
| 11409 | 363 auth->nc = 1; |
| 13084 | 364 } else { |
| 11409 | 365 auth->nc = 3; |
| 13084 | 366 i = 0; |
| 367 parts = g_strsplit(hdr, " ", 0); | |
| 368 while(parts[i]) { | |
| 369 if((tmp = parse_attribute("gssapi-data=\"", parts[i]))) { | |
| 370 auth->nonce = g_strdup(gaim_ntlm_parse_type2(tmp, &auth->flags)); | |
| 371 g_free(tmp); | |
| 372 } | |
| 373 if((tmp = parse_attribute("opaque=\"", parts[i]))) { | |
| 374 auth->opaque = tmp; | |
| 375 } | |
| 376 i++; | |
| 377 } | |
| 378 g_strfreev(parts); | |
| 11409 | 379 } |
| 380 return; | |
| 381 } | |
| 382 | |
| 383 auth->type = 1; | |
|
11439
617e67e1c985
[gaim-migrate @ 13676]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11424
diff
changeset
|
384 parts = g_strsplit(hdr, " ", 0); |
| 11346 | 385 while(parts[i]) { |
|
12746
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
386 if((tmp = parse_attribute("nonce=\"", parts[i]))) { |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
387 auth->nonce = tmp; |
| 11346 | 388 } |
|
12746
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
389 else if((tmp = parse_attribute("realm=\"", parts[i]))) { |
|
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
390 auth->realm = tmp; |
| 11346 | 391 } |
| 392 i++; | |
| 393 } | |
|
11439
617e67e1c985
[gaim-migrate @ 13676]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11424
diff
changeset
|
394 g_strfreev(parts); |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
395 |
|
12745
e788741f4840
[gaim-migrate @ 15092]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12741
diff
changeset
|
396 gaim_debug(GAIM_DEBUG_MISC, "simple", "nonce: %s realm: %s ", auth->nonce ? auth->nonce : "(null)", auth->realm ? auth->realm : "(null)"); |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
397 |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12216
diff
changeset
|
398 auth->digest_session_key = gaim_cipher_http_digest_calculate_session_key( |
| 13084 | 399 "md5", authuser, auth->realm, sip->password, auth->nonce, NULL); |
| 11346 | 400 |
| 401 auth->nc=1; | |
| 402 } | |
| 403 | |
| 11181 | 404 static void simple_input_cb(gpointer data, gint source, GaimInputCondition cond); |
| 405 | |
| 406 static void send_later_cb(gpointer data, gint source, GaimInputCondition cond) { | |
| 407 GaimConnection *gc = data; | |
| 408 struct simple_account_data *sip = gc->proto_data; | |
| 409 struct sip_connection *conn; | |
| 410 | |
| 411 if( source < 0 ) { | |
| 412 gaim_connection_error(gc,"Could not connect"); | |
| 413 return; | |
| 414 } | |
| 415 | |
| 416 sip->fd = source; | |
|
13058
256abf4dd912
[gaim-migrate @ 15420]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12909
diff
changeset
|
417 sip->connecting = FALSE; |
| 11181 | 418 write(sip->fd, sip->sendlater, strlen(sip->sendlater)); |
| 419 conn = connection_create(sip, source); | |
| 420 conn->inputhandler = gaim_input_add(sip->fd, GAIM_INPUT_READ, simple_input_cb, gc); | |
| 421 g_free(sip->sendlater); | |
|
13058
256abf4dd912
[gaim-migrate @ 15420]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12909
diff
changeset
|
422 sip->sendlater = NULL; |
| 11181 | 423 } |
| 424 | |
| 425 | |
| 426 static void sendlater(GaimConnection *gc, const char *buf) { | |
| 427 struct simple_account_data *sip = gc->proto_data; | |
| 428 int error = 0; | |
| 429 if(!sip->connecting) { | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
430 gaim_debug_info("simple","connecting to %s port %d\n", sip->realhostname ? sip->realhostname : "{NULL}", sip->realport); |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
431 error = gaim_proxy_connect(sip->account, sip->realhostname, sip->realport, send_later_cb, gc); |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
432 if(error) { |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
433 gaim_connection_error(gc, _("Couldn't create socket")); |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
434 } |
|
13058
256abf4dd912
[gaim-migrate @ 15420]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12909
diff
changeset
|
435 sip->connecting = TRUE; |
| 11181 | 436 } |
| 437 if(sip->sendlater) { | |
| 438 gchar *old = sip->sendlater; | |
| 439 sip->sendlater = g_strdup_printf("%s\r\n%s",old, buf); | |
|
13058
256abf4dd912
[gaim-migrate @ 15420]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12909
diff
changeset
|
440 g_free(old); |
| 11181 | 441 } else { |
| 442 sip->sendlater = g_strdup(buf); | |
| 443 } | |
| 444 } | |
| 445 | |
| 446 static int sendout_pkt(GaimConnection *gc, const char *buf) { | |
| 447 struct simple_account_data *sip = gc->proto_data; | |
| 448 time_t currtime = time(NULL); | |
| 11189 | 449 int ret = 0; |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
450 |
| 11181 | 451 gaim_debug(GAIM_DEBUG_MISC, "simple", "\n\nsending - %s\n######\n%s\n######\n\n", ctime(&currtime), buf); |
| 11189 | 452 if(sip->udp) { |
| 453 if(sendto(sip->fd, buf, strlen(buf), 0, (struct sockaddr*)&sip->serveraddr, sizeof(struct sockaddr_in)) < strlen(buf)) { | |
| 454 gaim_debug_info("simple", "could not send packet\n"); | |
| 455 } | |
| 456 } else { | |
| 457 if(sip->fd <0 ) { | |
| 458 sendlater(gc, buf); | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
459 return 0; |
| 11189 | 460 } |
| 461 ret = write(sip->fd, buf, strlen(buf)); | |
| 462 if(ret < 0) { | |
| 463 sendlater(gc,buf); | |
| 464 return 0; | |
| 465 } | |
| 11181 | 466 } |
| 467 return ret; | |
| 468 } | |
| 469 | |
| 11194 | 470 static void sendout_sipmsg(struct simple_account_data *sip, struct sipmsg *msg) { |
|
12741
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
471 GSList *tmp = msg->headers; |
| 11194 | 472 gchar *name; |
| 473 gchar *value; | |
|
12741
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
474 GString *outstr = g_string_new(""); |
|
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
475 g_string_append_printf(outstr, "%s %s SIP/2.0\r\n", msg->method, msg->target); |
| 11194 | 476 while(tmp) { |
|
12741
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
477 name = ((struct siphdrelement*) (tmp->data))->name; |
|
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
478 value = ((struct siphdrelement*) (tmp->data))->value; |
|
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
479 g_string_append_printf(outstr, "%s: %s\r\n", name, value); |
| 11194 | 480 tmp = g_slist_next(tmp); |
| 481 } | |
|
12741
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
482 g_string_append_printf(outstr, "\r\n%s", msg->body ? msg->body : ""); |
|
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
483 sendout_pkt(sip->gc, outstr->str); |
|
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
484 g_string_free(outstr, TRUE); |
| 11194 | 485 } |
| 486 | |
| 11181 | 487 static void send_sip_response(GaimConnection *gc, struct sipmsg *msg, int code, char *text, char *body) { |
| 488 GSList *tmp = msg->headers; | |
|
12741
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
489 gchar *name; |
|
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
490 gchar *value; |
|
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
491 GString *outstr = g_string_new(""); |
| 12754 | 492 |
| 493 /* When sending the acknowlegements and errors, the content length from the original | |
| 494 message is still here, but there is no body; we need to make sure we're sending the | |
| 495 correct content length */ | |
| 496 sipmsg_remove_header(msg, "Content-Length"); | |
| 497 if(body) { | |
| 498 gchar len[12]; | |
| 499 sprintf(len, "%" G_GSIZE_FORMAT , strlen(body)); | |
| 500 sipmsg_add_header(msg, "Content-Length",len); | |
| 501 } | |
| 502 else | |
| 503 sipmsg_add_header(msg, "Content-Length", "0"); | |
|
12741
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
504 g_string_append_printf(outstr, "SIP/2.0 %d %s\r\n", code, text); |
| 11181 | 505 while(tmp) { |
|
12741
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
506 name = ((struct siphdrelement*) (tmp->data))->name; |
|
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
507 value = ((struct siphdrelement*) (tmp->data))->value; |
|
12745
e788741f4840
[gaim-migrate @ 15092]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12741
diff
changeset
|
508 |
|
12741
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
509 g_string_append_printf(outstr, "%s: %s\r\n", name, value); |
| 11181 | 510 tmp = g_slist_next(tmp); |
| 511 } | |
|
12741
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
512 g_string_append_printf(outstr, "\r\n%s", body ? body : ""); |
|
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
513 sendout_pkt(gc, outstr->str); |
|
2b61e6ed85c3
[gaim-migrate @ 15088]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12730
diff
changeset
|
514 g_string_free(outstr, TRUE); |
| 11181 | 515 } |
| 516 | |
| 11194 | 517 static void transactions_remove(struct simple_account_data *sip, struct transaction *trans) { |
| 518 if(trans->msg) sipmsg_free(trans->msg); | |
| 519 sip->transactions = g_slist_remove(sip->transactions, trans); | |
| 520 g_free(trans); | |
| 521 } | |
| 522 | |
| 11181 | 523 static void transactions_add_buf(struct simple_account_data *sip, gchar *buf, void *callback) { |
| 524 struct transaction *trans = g_new0(struct transaction, 1); | |
| 525 trans->time = time(NULL); | |
| 526 trans->msg = sipmsg_parse_msg(buf); | |
| 527 trans->cseq = sipmsg_find_header(trans->msg, "CSeq"); | |
| 528 trans->callback = callback; | |
| 529 sip->transactions = g_slist_append(sip->transactions, trans); | |
| 530 } | |
| 531 | |
| 532 static struct transaction *transactions_find(struct simple_account_data *sip, struct sipmsg *msg) { | |
| 533 struct transaction *trans; | |
| 534 GSList *transactions = sip->transactions; | |
| 535 gchar *cseq = sipmsg_find_header(msg, "CSeq"); | |
| 536 | |
| 537 while(transactions) { | |
| 538 trans = transactions->data; | |
| 539 if(!strcmp(trans->cseq, cseq)) { | |
| 540 return trans; | |
| 541 } | |
| 542 transactions = transactions->next; | |
| 543 } | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
544 |
| 11181 | 545 return (struct transaction *)NULL; |
| 546 } | |
| 547 | |
| 548 static void send_sip_request(GaimConnection *gc, gchar *method, gchar *url, gchar *to, gchar *addheaders, gchar *body, struct sip_dialog *dialog, TransCallback tc) { | |
| 549 struct simple_account_data *sip = gc->proto_data; | |
| 550 char *callid= dialog ? g_strdup(dialog->callid) : gencallid(); | |
| 12216 | 551 char *auth=""; |
| 552 char *addh=""; | |
| 553 gchar *branch = genbranch(); | |
| 554 char *buf; | |
| 555 | |
| 12196 | 556 if(!strcmp(method,"REGISTER")) { |
| 557 if(sip->regcallid) callid = g_strdup(sip->regcallid); | |
| 558 else sip->regcallid = g_strdup(callid); | |
| 559 } | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
560 |
| 11181 | 561 if(addheaders) addh=addheaders; |
| 11409 | 562 if(sip->registrar.type && !strcmp(method,"REGISTER")) { |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
563 buf = auth_header(sip, &sip->registrar, method, url); |
|
12563
b7f7f3a685ea
[gaim-migrate @ 14882]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12492
diff
changeset
|
564 auth = g_strdup_printf("Authorization: %s", buf); |
| 11346 | 565 g_free(buf); |
| 11181 | 566 gaim_debug(GAIM_DEBUG_MISC, "simple", "header %s", auth); |
| 567 } | |
| 568 | |
| 11409 | 569 if(sip->proxy.type && strcmp(method,"REGISTER")) { |
| 11346 | 570 buf = auth_header(sip, &sip->proxy, method, url); |
|
12563
b7f7f3a685ea
[gaim-migrate @ 14882]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12492
diff
changeset
|
571 auth = g_strdup_printf("Proxy-Authorization: %s", buf); |
| 11346 | 572 g_free(buf); |
| 11181 | 573 gaim_debug(GAIM_DEBUG_MISC, "simple", "header %s", auth); |
| 574 } | |
|
12767
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
575 |
| 11181 | 576 buf = g_strdup_printf("%s %s SIP/2.0\r\n" |
| 11190 | 577 "Via: SIP/2.0/%s %s:%d;branch=%s\r\n" |
| 13084 | 578 /* Don't know what epid is, but LCS wants it */ |
| 579 "From: <sip:%s@%s>;tag=%s;epid=1234567890\r\n" | |
| 11181 | 580 "To: <%s>%s%s\r\n" |
| 581 "Max-Forwards: 10\r\n" | |
| 582 "CSeq: %d %s\r\n" | |
| 583 "User-Agent: Gaim SIP/SIMPLE Plugin\r\n" | |
| 584 "Call-ID: %s\r\n" | |
| 585 "%s%s" | |
| 11658 | 586 "Content-Length: %" G_GSIZE_FORMAT "\r\n\r\n%s", |
| 11181 | 587 method, |
| 588 url, | |
| 11190 | 589 sip->udp ? "UDP" : "TCP", |
| 12760 | 590 get_my_ip(), |
| 11181 | 591 sip->listenport, |
| 592 branch, | |
| 593 sip->username, | |
| 594 sip->servername, | |
| 595 dialog ? dialog->ourtag : gentag(), | |
| 596 to, | |
| 597 dialog ? ";tag=" : "", | |
| 598 dialog ? dialog->theirtag : "", | |
| 599 ++sip->cseq, | |
| 600 method, | |
| 601 callid, | |
| 602 auth, | |
| 603 addh, | |
| 604 strlen(body), | |
| 605 body); | |
| 606 g_free(branch); | |
| 607 g_free(callid); | |
| 608 | |
| 11341 | 609 /* add to ongoing transactions */ |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
610 |
| 11181 | 611 transactions_add_buf(sip, buf, tc); |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
612 |
| 11181 | 613 sendout_pkt(gc,buf); |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
614 |
| 11181 | 615 g_free(buf); |
| 616 } | |
| 617 | |
| 11194 | 618 static void do_register_exp(struct simple_account_data *sip, int expire) { |
| 11181 | 619 char *uri = g_strdup_printf("sip:%s",sip->servername); |
| 620 char *to = g_strdup_printf("sip:%s@%s",sip->username,sip->servername); | |
| 12760 | 621 char *contact = g_strdup_printf("Contact: <sip:%s@%s:%d;transport=%s>;methods=\"MESSAGE, SUBSCRIBE, NOTIFY\"\r\nExpires: %d\r\n", sip->username, get_my_ip(), sip->listenport, sip->udp ? "udp" : "tcp", expire); |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
622 |
|
11439
617e67e1c985
[gaim-migrate @ 13676]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11424
diff
changeset
|
623 sip->registerstatus = 1; |
|
617e67e1c985
[gaim-migrate @ 13676]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11424
diff
changeset
|
624 |
| 11194 | 625 if(expire) { |
| 626 sip->reregister = time(NULL) + expire - 50; | |
| 627 } else { | |
| 628 sip->reregister = time(NULL) + 600; | |
| 629 } | |
| 630 send_sip_request(sip->gc,"REGISTER",uri,to, contact, "", NULL, process_register_response); | |
| 11341 | 631 g_free(contact); |
| 11181 | 632 g_free(uri); |
| 633 g_free(to); | |
| 634 } | |
| 635 | |
| 11194 | 636 static void do_register(struct simple_account_data *sip) { |
| 637 do_register_exp(sip, sip->registerexpire); | |
| 638 } | |
| 639 | |
| 11181 | 640 static gchar *parse_from(gchar *hdr) { |
| 641 gchar *from = hdr; | |
| 642 gchar *tmp; | |
| 643 | |
| 644 if(!from) return NULL; | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
645 gaim_debug_info("simple", "parsing address out of %s\n",from); |
| 11181 | 646 tmp = strchr(from, '<'); |
| 647 | |
| 11341 | 648 /* i hate the different SIP UA behaviours... */ |
| 649 if(tmp) { /* sip address in <...> */ | |
| 11181 | 650 from = tmp+1; |
| 651 tmp = strchr(from,'>'); | |
| 652 if(tmp) { | |
| 653 from = g_strndup(from,tmp-from); | |
| 654 } else { | |
| 655 gaim_debug_info("simple", "found < without > in From\n"); | |
| 656 return NULL; | |
| 657 } | |
| 658 } else { | |
| 659 tmp = strchr(from, ';'); | |
| 660 if(tmp) { | |
| 661 from = g_strndup(from,tmp-from); | |
| 11483 | 662 } else { |
| 663 from = g_strdup(from); | |
| 11181 | 664 } |
| 665 } | |
| 666 gaim_debug_info("simple", "got %s\n",from); | |
| 667 return from; | |
| 668 } | |
| 669 | |
| 670 static gboolean process_subscribe_response(struct simple_account_data *sip, struct sipmsg *msg, struct transaction *tc) { | |
| 11341 | 671 gchar *to = parse_from(sipmsg_find_header(tc->msg,"To")); /* cant be NULL since it is our own msg */ |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
672 |
| 11181 | 673 if(msg->response==200 || msg->response==202) { |
| 674 return TRUE; | |
| 675 } | |
| 676 | |
| 11341 | 677 /* we can not subscribe -> user is offline (TODO unknown status?) */ |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
678 |
| 11181 | 679 gaim_prpl_got_user_status(sip->account, to, "offline", NULL); |
| 680 g_free(to); | |
| 681 return TRUE; | |
| 682 } | |
| 683 | |
| 684 static void simple_subscribe(struct simple_account_data *sip, struct simple_buddy *buddy) { | |
| 11341 | 685 gchar *contact = "Expires: 300\r\nAccept: application/pidf+xml\r\nEvent: presence\r\n"; |
| 11181 | 686 gchar *to; |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
687 if(strstr(buddy->name,"sip:")) to = g_strdup(buddy->name); |
| 11181 | 688 else to = g_strdup_printf("sip:%s",buddy->name); |
| 13081 | 689 contact = g_strdup_printf("%sContact: <sip:%s@%s>\r\n", contact, sip->username, sip->servername); |
| 11341 | 690 /* subscribe to buddy presence |
| 691 * we dont need to know the status so we do not need a callback */ | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
692 |
| 11181 | 693 send_sip_request(sip->gc, "SUBSCRIBE",to, to, contact, "", NULL, process_subscribe_response); |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
694 |
| 11181 | 695 g_free(to); |
| 11341 | 696 g_free(contact); |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
697 |
| 11341 | 698 /* resubscribe before subscription expires */ |
| 699 /* add some jitter */ | |
| 700 buddy->resubscribe = time(NULL)+250+(rand()%50); | |
| 11181 | 701 } |
| 702 | |
| 703 static void simple_buddy_resub(char *name, struct simple_buddy *buddy, struct simple_account_data *sip) { | |
| 704 time_t curtime = time(NULL); | |
| 11341 | 705 gaim_debug_info("simple","buddy resub\n"); |
| 11181 | 706 if(buddy->resubscribe < curtime) { |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
707 gaim_debug(GAIM_DEBUG_MISC, "simple", "simple_buddy_resub %s\n",name); |
| 11181 | 708 simple_subscribe(sip, buddy); |
| 709 } | |
| 710 } | |
| 711 | |
| 11194 | 712 static gboolean resend_timeout(struct simple_account_data *sip) { |
| 713 GSList *tmp = sip->transactions; | |
| 714 time_t currtime = time(NULL); | |
| 715 while(tmp) { | |
| 716 struct transaction *trans = tmp->data; | |
| 717 tmp = tmp->next; | |
| 718 gaim_debug_info("simple", "have open transaction age: %d\n", currtime- trans->time); | |
| 719 if((currtime - trans->time > 5) && trans->retries >= 1) { | |
| 11341 | 720 /* TODO 408 */ |
| 11194 | 721 } else { |
| 722 if((currtime - trans->time > 2) && trans->retries == 0) { | |
| 723 trans->retries++; | |
| 724 sendout_sipmsg(sip, trans->msg); | |
| 725 } | |
| 726 } | |
| 727 } | |
| 728 return TRUE; | |
| 729 } | |
| 730 | |
| 12768 | 731 static gboolean subscribe_timeout(struct simple_account_data *sip) { |
| 11181 | 732 GSList *tmp; |
| 733 time_t curtime = time(NULL); | |
| 11341 | 734 /* register again if first registration expires */ |
| 11181 | 735 if(sip->reregister < curtime) { |
| 11194 | 736 do_register(sip); |
| 11181 | 737 } |
| 11341 | 738 /* check for every subscription if we need to resubscribe */ |
| 11181 | 739 g_hash_table_foreach(sip->buddies, (GHFunc)simple_buddy_resub, (gpointer)sip); |
| 740 | |
| 11341 | 741 /* remove a timed out suscriber */ |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
742 |
| 11181 | 743 tmp = sip->watcher; |
| 744 while(tmp) { | |
| 745 struct simple_watcher *watcher = tmp->data; | |
| 746 if(watcher->expire < curtime) { | |
| 747 watcher_remove(sip, watcher->name); | |
| 748 tmp = sip->watcher; | |
| 749 } | |
| 750 if(tmp) tmp = tmp->next; | |
| 751 } | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
752 |
| 11181 | 753 return TRUE; |
| 754 } | |
| 755 | |
| 756 static void simple_send_message(struct simple_account_data *sip, char *to, char *msg, char *type) { | |
| 757 gchar *hdr; | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
758 if(type) { |
| 11181 | 759 hdr = g_strdup_printf("Content-Type: %s\r\n",type); |
| 760 } else { | |
| 761 hdr = g_strdup("Content-Type: text/plain\r\n"); | |
| 762 } | |
| 763 send_sip_request(sip->gc, "MESSAGE", to, to, hdr, msg, NULL, NULL); | |
| 764 g_free(hdr); | |
| 765 } | |
| 766 | |
| 12216 | 767 static int simple_im_send(GaimConnection *gc, const char *who, const char *what, GaimMessageFlags flags) { |
| 11181 | 768 struct simple_account_data *sip = gc->proto_data; |
| 769 char *to = g_strdup(who); | |
| 12216 | 770 char *text = gaim_unescape_html(what); |
| 11181 | 771 simple_send_message(sip, to, text, NULL); |
| 772 g_free(to); | |
| 773 g_free(text); | |
| 774 return 1; | |
| 775 } | |
| 776 | |
| 777 static void process_incoming_message(struct simple_account_data *sip, struct sipmsg *msg) { | |
| 778 gchar *from; | |
| 779 gchar *contenttype; | |
| 780 gboolean found = FALSE; | |
| 781 | |
| 782 from = parse_from(sipmsg_find_header(msg, "From")); | |
| 783 | |
| 784 if(!from) return; | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
785 |
| 11181 | 786 gaim_debug(GAIM_DEBUG_MISC, "simple", "got message from %s: %s\n", from, msg->body); |
| 787 | |
| 788 contenttype = sipmsg_find_header(msg, "Content-Type"); | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
789 if(!contenttype || !strncmp(contenttype, "text/plain", 10) || !strncmp(contenttype, "text/html", 9)) { |
| 11181 | 790 serv_got_im(sip->gc, from, msg->body, 0, time(NULL)); |
| 791 send_sip_response(sip->gc, msg, 200, "OK", NULL); | |
| 792 found = TRUE; | |
| 793 } | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
794 if(!strncmp(contenttype, "application/im-iscomposing+xml",30)) { |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
795 xmlnode *isc = xmlnode_from_str(msg->body, msg->bodylen); |
| 11181 | 796 xmlnode *state; |
| 797 gchar *statedata; | |
| 798 | |
| 799 if(!isc) { | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
800 gaim_debug_info("simple","process_incoming_message: can not parse iscomposing\n"); |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
801 return; |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
802 } |
| 11181 | 803 |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
804 state = xmlnode_get_child(isc, "state"); |
| 11181 | 805 |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
806 if(!state) { |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
807 gaim_debug_info("simple","process_incoming_message: no state found\n"); |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
808 return; |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
809 } |
| 11181 | 810 |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
811 statedata = xmlnode_get_data(state); |
| 11181 | 812 if(statedata) { |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
813 if(strstr(statedata,"active")) serv_got_typing(sip->gc, from, 0, GAIM_TYPING); |
| 11181 | 814 else serv_got_typing_stopped(sip->gc, from); |
| 815 } | |
| 816 xmlnode_free(isc); | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
817 send_sip_response(sip->gc, msg, 200, "OK", NULL); |
| 11181 | 818 found = TRUE; |
| 819 } | |
| 820 if(!found) { | |
| 821 gaim_debug_info("simple", "got unknown mime-type"); | |
| 822 send_sip_response(sip->gc, msg, 415, "Unsupported media type", NULL); | |
| 823 } | |
| 824 g_free(from); | |
| 825 } | |
| 826 | |
| 827 | |
| 828 gboolean process_register_response(struct simple_account_data *sip, struct sipmsg *msg, struct transaction *tc) { | |
| 829 gchar *tmp; | |
| 830 gaim_debug(GAIM_DEBUG_MISC, "simple", "in process register response response: %d\n", msg->response); | |
| 831 switch (msg->response) { | |
| 832 case 200: | |
| 11341 | 833 if(sip->registerstatus<3) { /* registered */ |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
834 if(gaim_account_get_bool(sip->account, "dopublish", TRUE)) { |
| 11345 | 835 send_publish(sip); |
| 836 } | |
| 11181 | 837 } |
| 838 sip->registerstatus=3; | |
| 839 gaim_connection_set_state(sip->gc, GAIM_CONNECTED); | |
| 11341 | 840 |
| 841 /* get buddies from blist */ | |
| 842 simple_get_buddies(sip->gc); | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
843 |
| 12768 | 844 subscribe_timeout(sip); |
| 11181 | 845 break; |
| 846 case 401: | |
| 847 if(sip->registerstatus!=2) { | |
| 11346 | 848 gaim_debug_info("simple","REGISTER retries %d\n",sip->registrar.retries); |
| 849 if(sip->registrar.retries>3) { | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
850 gaim_connection_error(sip->gc,"Wrong Password"); |
| 11346 | 851 return TRUE; |
| 852 } | |
| 11181 | 853 tmp = sipmsg_find_header(msg, "WWW-Authenticate"); |
| 854 fill_auth(sip, tmp, &sip->registrar); | |
| 855 sip->registerstatus=2; | |
| 11194 | 856 do_register(sip); |
| 11181 | 857 } |
| 858 break; | |
| 859 } | |
| 860 return TRUE; | |
| 861 } | |
| 862 | |
| 863 static void process_incoming_notify(struct simple_account_data *sip, struct sipmsg *msg) { | |
| 864 gchar *from; | |
| 865 gchar *fromhdr; | |
| 866 gchar *tmp2; | |
| 867 xmlnode *pidf; | |
| 868 xmlnode *basicstatus; | |
| 869 gboolean isonline = FALSE; | |
| 870 | |
| 871 fromhdr = sipmsg_find_header(msg,"From"); | |
| 872 from = parse_from(fromhdr); | |
| 873 if(!from) return; | |
| 874 | |
| 875 pidf = xmlnode_from_str(msg->body, msg->bodylen); | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
876 |
| 11181 | 877 if(!pidf) { |
| 878 gaim_debug_info("simple","process_incoming_notify: no parseable pidf\n"); | |
| 879 return; | |
| 880 } | |
| 881 | |
| 882 basicstatus = xmlnode_get_child(xmlnode_get_child(xmlnode_get_child(pidf,"tuple"),"status"), "basic"); | |
| 883 | |
| 884 if(!basicstatus) { | |
| 885 gaim_debug_info("simple","process_incoming_notify: no basic found\n"); | |
| 886 return; | |
| 887 } | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
888 |
| 11181 | 889 tmp2 = xmlnode_get_data(basicstatus); |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
890 |
| 11181 | 891 if(!tmp2) { |
| 892 gaim_debug_info("simple","process_incoming_notify: no basic data found\n"); | |
| 893 return; | |
| 894 } | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
895 |
| 11181 | 896 if(strstr(tmp2, "open")) { |
| 897 isonline = TRUE; | |
| 898 } | |
| 899 | |
| 900 if(isonline) gaim_prpl_got_user_status(sip->account, from, "available", NULL); | |
| 901 else gaim_prpl_got_user_status(sip->account, from, "offline", NULL); | |
| 902 | |
| 903 xmlnode_free(pidf); | |
| 904 | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
905 g_free(from); |
| 11181 | 906 send_sip_response(sip->gc, msg, 200, "OK", NULL); |
| 907 } | |
| 908 | |
| 909 static int simple_typing(GaimConnection *gc, const char *name, int typing) { | |
| 910 struct simple_account_data *sip = gc->proto_data; | |
| 911 | |
| 912 gchar *xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" | |
| 913 "<isComposing xmlns=\"urn:ietf:params:xml:ns:im-iscomposing\"\n" | |
| 914 "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n" | |
| 915 "xsi:schemaLocation=\"urn:ietf:params:xml:ns:im-composing iscomposing.xsd\">\n" | |
| 916 "<state>%s</state>\n" | |
| 917 "<contenttype>text/plain</contenttype>\n" | |
| 918 "<refresh>60</refresh>\n" | |
| 919 "</isComposing>"; | |
| 920 gchar *recv = g_strdup(name); | |
| 921 if(typing == GAIM_TYPING) { | |
| 922 gchar *msg = g_strdup_printf(xml, "active"); | |
| 923 simple_send_message(sip, recv, msg, "application/im-iscomposing+xml"); | |
| 924 g_free(msg); | |
| 925 } else { | |
| 926 gchar *msg = g_strdup_printf(xml, "idle"); | |
| 927 simple_send_message(sip, recv, msg, "application/im-iscomposing+xml"); | |
| 928 g_free(msg); | |
| 929 } | |
| 930 g_free(recv); | |
| 931 return 1; | |
| 932 } | |
| 933 | |
| 934 static gchar *find_tag(gchar *hdr) { | |
| 935 gchar *tmp = strstr(hdr, ";tag="); | |
| 936 gchar *tmp2; | |
| 937 if(!tmp) return NULL; | |
| 938 tmp += 5; | |
| 939 if((tmp2 = strchr(tmp, ';'))) { | |
| 940 tmp2[0] = '\0'; | |
| 941 tmp = g_strdup(tmp); | |
| 942 tmp2[0] = ';'; | |
| 943 return tmp; | |
| 944 } | |
| 945 return g_strdup(tmp); | |
| 946 } | |
| 947 | |
| 948 static gchar* gen_pidf(struct simple_account_data *sip) { | |
| 949 gchar *doc = g_strdup_printf("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
950 "<presence xmlns=\"urn:ietf:params:xml:ns:pidf\"\n" |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
951 "xmlns:im=\"urn:ietf:params:xml:ns:pidf:im\"\n" |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
952 "entity=\"sip:%s@%s\">\n" |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
953 "<tuple id=\"bs35r9f\">\n" |
| 11181 | 954 "<status>\n" |
| 955 "<basic>open</basic>\n" | |
| 956 "<im:im>%s</im:im>\n" | |
| 957 "</status>\n" | |
| 958 "</tuple>\n" | |
| 959 "</presence>", | |
| 960 sip->username, | |
| 961 sip->servername, | |
| 962 sip->status); | |
| 963 return doc; | |
| 964 } | |
| 965 | |
| 966 static void send_notify(struct simple_account_data *sip, struct simple_watcher *watcher) { | |
| 967 gchar *doc = gen_pidf(sip); | |
| 968 send_sip_request(sip->gc, "NOTIFY", watcher->name, watcher->name, "Event: presence\r\nContent-Type: application/pidf+xml\r\n", doc, &watcher->dialog, NULL); | |
| 969 g_free(doc); | |
| 970 } | |
| 971 | |
| 972 static gboolean process_publish_response(struct simple_account_data *sip, struct sipmsg *msg, struct transaction *tc) { | |
| 11345 | 973 if(msg->response != 200 && msg->response != 408) { |
| 11341 | 974 /* never send again */ |
| 11181 | 975 sip->republish = -1; |
| 976 } | |
| 977 return TRUE; | |
| 978 } | |
| 979 | |
| 980 static void send_publish(struct simple_account_data *sip) { | |
| 981 gchar *uri = g_strdup_printf("sip:%s@%s", sip->username, sip->servername); | |
| 982 gchar *doc = gen_pidf(sip); | |
| 11341 | 983 send_sip_request(sip->gc, "PUBLISH", uri, uri, "Expires: 600\r\nEvent: presence\r\nContent-Type: application/pidf+xml\r\n", doc, NULL, process_publish_response); |
| 11181 | 984 sip->republish = time(NULL) + 500; |
| 985 g_free(doc); | |
| 986 } | |
| 987 | |
| 988 static void process_incoming_subscribe(struct simple_account_data *sip, struct sipmsg *msg) { | |
| 989 gchar *from = parse_from(sipmsg_find_header(msg, "From")); | |
| 990 gchar *theirtag = find_tag(sipmsg_find_header(msg, "From")); | |
| 991 gchar *ourtag = find_tag(sipmsg_find_header(msg, "To")); | |
| 992 gboolean tagadded = FALSE; | |
| 993 gchar *callid = sipmsg_find_header(msg, "Call-ID"); | |
| 994 gchar *expire = sipmsg_find_header(msg, "Expire"); | |
| 995 gchar *tmp; | |
| 996 struct simple_watcher *watcher = watcher_find(sip, from); | |
| 997 if(!ourtag) { | |
| 998 tagadded = TRUE; | |
| 999 ourtag = gentag(); | |
| 1000 } | |
| 11341 | 1001 if(!watcher) { /* new subscription */ |
| 11345 | 1002 if(!gaim_privacy_check(sip->account, from)) { |
| 1003 send_sip_response(sip->gc, msg, 202, "Ok", NULL); | |
| 1004 goto privend; | |
| 1005 } | |
| 11181 | 1006 watcher = watcher_create(sip, from, callid, ourtag, theirtag); |
| 1007 } | |
| 1008 if(tagadded) { | |
| 1009 gchar *to = g_strdup_printf("%s;tag=%s", sipmsg_find_header(msg, "To"), ourtag); | |
| 1010 sipmsg_remove_header(msg, "To"); | |
| 1011 sipmsg_add_header(msg, "To", to); | |
| 1012 } | |
| 1013 if(expire) | |
| 1014 watcher->expire = time(NULL) + strtol(expire, NULL, 10); | |
| 1015 else | |
| 1016 watcher->expire = time(NULL) + 600; | |
| 1017 sipmsg_remove_header(msg, "Contact"); | |
| 13081 | 1018 tmp = g_strdup_printf("<sip:%s@%s>",sip->username, sip->servername); |
| 11181 | 1019 sipmsg_add_header(msg, "Contact", tmp); |
| 1020 gaim_debug_info("simple","got subscribe: name %s ourtag %s theirtag %s callid %s\n", watcher->name, watcher->dialog.ourtag, watcher->dialog.theirtag, watcher->dialog.callid); | |
| 1021 send_sip_response(sip->gc, msg, 200, "Ok", NULL); | |
| 1022 g_free(tmp); | |
| 1023 send_notify(sip, watcher); | |
| 11345 | 1024 privend: |
| 1025 g_free(from); | |
| 1026 g_free(theirtag); | |
| 1027 g_free(ourtag); | |
| 1028 g_free(callid); | |
| 1029 g_free(expire); | |
| 11181 | 1030 } |
| 1031 | |
| 11189 | 1032 static void process_input_message(struct simple_account_data *sip, struct sipmsg *msg) { |
|
12745
e788741f4840
[gaim-migrate @ 15092]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12741
diff
changeset
|
1033 gboolean found = FALSE; |
|
e788741f4840
[gaim-migrate @ 15092]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12741
diff
changeset
|
1034 if(msg->response == 0) { /* request */ |
| 11189 | 1035 if(!strcmp(msg->method, "MESSAGE")) { |
| 1036 process_incoming_message(sip, msg); | |
|
12745
e788741f4840
[gaim-migrate @ 15092]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12741
diff
changeset
|
1037 found = TRUE; |
|
e788741f4840
[gaim-migrate @ 15092]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12741
diff
changeset
|
1038 } else if(!strcmp(msg->method, "NOTIFY")) { |
| 11189 | 1039 process_incoming_notify(sip, msg); |
|
12745
e788741f4840
[gaim-migrate @ 15092]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12741
diff
changeset
|
1040 found = TRUE; |
|
e788741f4840
[gaim-migrate @ 15092]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12741
diff
changeset
|
1041 } else if(!strcmp(msg->method, "SUBSCRIBE")) { |
| 11189 | 1042 process_incoming_subscribe(sip, msg); |
|
12745
e788741f4840
[gaim-migrate @ 15092]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12741
diff
changeset
|
1043 found = TRUE; |
|
e788741f4840
[gaim-migrate @ 15092]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12741
diff
changeset
|
1044 } else { |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1045 send_sip_response(sip->gc, msg, 501, "Not implemented", NULL); |
| 11190 | 1046 } |
| 11341 | 1047 } else { /* response */ |
| 11189 | 1048 struct transaction *trans = transactions_find(sip, msg); |
| 1049 if(trans) { | |
| 1050 if(msg->response == 407) { | |
|
11439
617e67e1c985
[gaim-migrate @ 13676]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11424
diff
changeset
|
1051 gchar *resend, *auth, *ptmp; |
|
617e67e1c985
[gaim-migrate @ 13676]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11424
diff
changeset
|
1052 |
| 11346 | 1053 if(sip->proxy.retries>3) return; |
| 1054 sip->proxy.retries++; | |
| 11341 | 1055 /* do proxy authentication */ |
| 11189 | 1056 |
|
11439
617e67e1c985
[gaim-migrate @ 13676]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11424
diff
changeset
|
1057 ptmp = sipmsg_find_header(msg, "Proxy-Authenticate"); |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1058 |
| 11189 | 1059 fill_auth(sip, ptmp, &sip->proxy); |
| 11346 | 1060 auth = auth_header(sip, &sip->proxy, trans->msg->method, trans->msg->target); |
| 11189 | 1061 sipmsg_remove_header(msg, "Proxy-Authorization"); |
| 1062 sipmsg_add_header(trans->msg, "Proxy-Authorization", auth); | |
| 1063 g_free(auth); | |
| 1064 resend = sipmsg_to_string(trans->msg); | |
| 11341 | 1065 /* resend request */ |
| 11189 | 1066 sendout_pkt(sip->gc, resend); |
| 1067 g_free(resend); | |
| 1068 } else { | |
| 11517 | 1069 if(msg->response == 100) { |
| 1070 /* ignore provisional response */ | |
| 1071 gaim_debug_info("simple","got trying response\n"); | |
| 1072 } else { | |
| 1073 sip->proxy.retries = 0; | |
| 1074 if(msg->response == 401) sip->registrar.retries++; | |
| 1075 else sip->registrar.retries = 0; | |
| 1076 if(trans->callback) { | |
| 1077 /* call the callback to process response*/ | |
| 1078 (trans->callback)(sip, msg, trans); | |
| 1079 } | |
| 1080 transactions_remove(sip, trans); | |
| 11189 | 1081 } |
| 1082 } | |
|
12745
e788741f4840
[gaim-migrate @ 15092]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12741
diff
changeset
|
1083 found = TRUE; |
| 11189 | 1084 } else { |
| 1085 gaim_debug(GAIM_DEBUG_MISC, "simple", "received response to unknown transaction"); | |
| 1086 } | |
| 1087 } | |
| 1088 if(!found) { | |
|
12746
4f7dab030b1a
[gaim-migrate @ 15093]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12745
diff
changeset
|
1089 gaim_debug(GAIM_DEBUG_MISC, "simple", "received a unknown sip message with method %s and response %d\n",msg->method, msg->response); |
| 11189 | 1090 } |
| 1091 } | |
| 1092 | |
| 11181 | 1093 static void process_input(struct simple_account_data *sip, struct sip_connection *conn) |
| 1094 { | |
| 1095 char *cur; | |
| 1096 char *dummy; | |
| 1097 struct sipmsg *msg; | |
| 1098 int restlen; | |
| 1099 cur = conn->inbuf; | |
| 1100 | |
| 11341 | 1101 /* according to the RFC remove CRLF at the beginning */ |
| 11181 | 1102 while(*cur == '\r' || *cur == '\n') { |
| 1103 cur++; | |
| 1104 } | |
| 1105 if(cur != conn->inbuf) { | |
| 1106 memmove(conn->inbuf, cur, conn->inbufused-(cur-conn->inbuf)); | |
| 1107 conn->inbufused=strlen(conn->inbuf); | |
| 1108 } | |
| 1109 | |
| 11341 | 1110 /* Received a full Header? */ |
| 11181 | 1111 if((cur = strstr(conn->inbuf, "\r\n\r\n"))!=NULL) { |
| 1112 time_t currtime = time(NULL); | |
| 1113 cur += 2; | |
| 1114 cur[0] = '\0'; | |
| 1115 gaim_debug_info("simple","\n\nreceived - %s\n######\n%s\n#######\n\n",ctime(&currtime), conn->inbuf); | |
| 1116 msg = sipmsg_parse_header(conn->inbuf); | |
| 1117 cur[0] = '\r'; | |
| 1118 cur += 2; | |
| 1119 restlen = conn->inbufused - (cur-conn->inbuf); | |
| 1120 if(restlen>=msg->bodylen) { | |
| 1121 dummy = g_malloc(msg->bodylen+1); | |
| 1122 memcpy(dummy, cur, msg->bodylen); | |
| 1123 dummy[msg->bodylen]='\0'; | |
| 1124 msg->body = dummy; | |
| 1125 cur+=msg->bodylen; | |
| 13083 | 1126 memmove(conn->inbuf, cur, conn->inbuflen-(cur-conn->inbuf)); |
| 11181 | 1127 conn->inbufused=strlen(conn->inbuf); |
| 1128 } else { | |
| 1129 sipmsg_free(msg); | |
| 1130 return; | |
| 1131 } | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1132 gaim_debug(GAIM_DEBUG_MISC, "simple", "in process response response: %d\n", msg->response); |
| 11189 | 1133 process_input_message(sip,msg); |
| 11181 | 1134 } else { |
| 1135 gaim_debug(GAIM_DEBUG_MISC, "simple", "received a incomplete sip msg: %s\n", conn->inbuf); | |
| 1136 } | |
| 1137 } | |
| 1138 | |
| 11189 | 1139 static void simple_udp_process(gpointer data, gint source, GaimInputCondition con) { |
| 1140 GaimConnection *gc = data; | |
| 1141 struct simple_account_data *sip = gc->proto_data; | |
| 1142 struct sipmsg *msg; | |
| 1143 int len; | |
| 1144 time_t currtime; | |
| 1145 | |
| 1146 static char buffer[65536]; | |
|
12770
ab00cea25ef2
[gaim-migrate @ 15117]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12769
diff
changeset
|
1147 if((len = recv(source, buffer, sizeof(buffer) - 1, 0)) > 0) { |
|
12748
dd271caf25b0
[gaim-migrate @ 15095]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12746
diff
changeset
|
1148 buffer[len] = '\0'; |
|
dd271caf25b0
[gaim-migrate @ 15095]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12746
diff
changeset
|
1149 gaim_debug_info("simple","\n\nreceived - %s\n######\n%s\n#######\n\n",ctime(&currtime), buffer); |
|
dd271caf25b0
[gaim-migrate @ 15095]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12746
diff
changeset
|
1150 msg = sipmsg_parse_msg(buffer); |
|
dd271caf25b0
[gaim-migrate @ 15095]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12746
diff
changeset
|
1151 if(msg) process_input_message(sip, msg); |
|
dd271caf25b0
[gaim-migrate @ 15095]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12746
diff
changeset
|
1152 } |
| 11189 | 1153 } |
| 1154 | |
| 11181 | 1155 static void simple_input_cb(gpointer data, gint source, GaimInputCondition cond) |
| 1156 { | |
| 1157 GaimConnection *gc = data; | |
| 1158 struct simple_account_data *sip = gc->proto_data; | |
| 1159 int len; | |
| 1160 struct sip_connection *conn = connection_find(sip, source); | |
| 1161 if(!conn) { | |
| 1162 gaim_debug_error("simple", "Connection not found!\n"); | |
| 1163 return; | |
| 1164 } | |
| 1165 | |
| 1166 if (conn->inbuflen < conn->inbufused + SIMPLE_BUF_INC) { | |
| 1167 conn->inbuflen += SIMPLE_BUF_INC; | |
| 1168 conn->inbuf = g_realloc(conn->inbuf, conn->inbuflen); | |
| 1169 } | |
| 1170 | |
| 1171 if ((len = read(source, conn->inbuf + conn->inbufused, SIMPLE_BUF_INC - 1)) <= 0) { | |
| 1172 gaim_debug_info("simple","simple_input_cb: read error\n"); | |
| 1173 connection_remove(sip, source); | |
| 1174 if(sip->fd == source) sip->fd = -1; | |
| 1175 return; | |
| 1176 } | |
| 1177 if(len == 0) { | |
| 11341 | 1178 /* connection was closed */ |
| 11181 | 1179 connection_remove(sip, source); |
| 1180 if(sip->fd == source) sip->fd = -1; | |
| 1181 } | |
| 1182 | |
| 1183 conn->inbufused += len; | |
| 1184 conn->inbuf[conn->inbufused]='\0'; | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1185 |
| 11181 | 1186 process_input(sip, conn); |
| 1187 } | |
| 1188 | |
| 1189 /* Callback for new connections on incoming TCP port */ | |
| 1190 static void simple_newconn_cb(gpointer data, gint source, GaimInputCondition cond) { | |
| 1191 GaimConnection *gc = data; | |
| 1192 struct simple_account_data *sip = gc->proto_data; | |
| 1193 struct sip_connection *conn; | |
| 1194 | |
| 1195 int newfd = accept(source, NULL, NULL); | |
| 1196 | |
| 1197 conn = connection_create(sip, newfd); | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1198 |
| 11181 | 1199 conn->inputhandler = gaim_input_add(newfd, GAIM_INPUT_READ, simple_input_cb, gc); |
| 1200 } | |
| 1201 | |
| 1202 static void login_cb(gpointer data, gint source, GaimInputCondition cond) { | |
| 1203 GaimConnection *gc = data; | |
| 1204 struct simple_account_data *sip = gc->proto_data; | |
| 1205 struct sip_connection *conn; | |
| 1206 | |
| 1207 if( source < 0 ) { | |
| 1208 gaim_connection_error(gc,"Could not connect"); | |
| 1209 return; | |
| 1210 } | |
| 1211 | |
| 1212 sip->fd = source; | |
| 1213 | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1214 conn = connection_create(sip, source); |
| 12768 | 1215 |
| 1216 sip->registertimeout = gaim_timeout_add((rand()%100)+10*1000, (GSourceFunc)subscribe_timeout, sip); | |
| 11181 | 1217 |
| 11194 | 1218 do_register(sip); |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1219 |
| 11181 | 1220 conn->inputhandler = gaim_input_add(sip->fd, GAIM_INPUT_READ, simple_input_cb, gc); |
| 1221 } | |
| 1222 | |
| 1223 static guint simple_ht_hash_nick(const char *nick) { | |
| 1224 char *lc = g_utf8_strdown(nick, -1); | |
| 1225 guint bucket = g_str_hash(lc); | |
| 1226 g_free(lc); | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1227 |
| 11181 | 1228 return bucket; |
| 1229 } | |
| 1230 | |
| 1231 static gboolean simple_ht_equals_nick(const char *nick1, const char *nick2) { | |
| 1232 return (gaim_utf8_strcasecmp(nick1, nick2) == 0); | |
| 1233 } | |
| 1234 | |
|
12909
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1235 static void simple_udp_host_resolved_listen_cb(int listenfd, gpointer data) { |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1236 struct simple_account_data *sip = (struct simple_account_data*) data; |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1237 |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1238 if(listenfd == -1) { |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1239 gaim_connection_error(sip->gc, _("Could not create listen socket")); |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1240 return; |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1241 } |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1242 |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1243 sip->fd = listenfd; |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1244 |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1245 sip->listenport = gaim_network_get_port_from_fd(sip->fd); |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1246 sip->listenfd = sip->fd; |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1247 |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1248 sip->listenpa = gaim_input_add(sip->fd, GAIM_INPUT_READ, simple_udp_process, sip->gc); |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1249 |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1250 sip->resendtimeout = gaim_timeout_add(2500, (GSourceFunc) resend_timeout, sip); |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1251 sip->registertimeout = gaim_timeout_add((rand()%100)+10*1000, (GSourceFunc)subscribe_timeout, sip); |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1252 do_register(sip); |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1253 } |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1254 |
|
12767
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1255 static void simple_udp_host_resolved(GSList *hosts, gpointer data, const char *error_message) { |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1256 struct simple_account_data *sip = (struct simple_account_data*) data; |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1257 int addr_size; |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1258 |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1259 if (!hosts || !hosts->data) { |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1260 gaim_connection_error(sip->gc, _("Couldn't resolve host")); |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1261 return; |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1262 } |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1263 |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1264 addr_size = GPOINTER_TO_INT(hosts->data); |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1265 hosts = g_slist_remove(hosts, hosts->data); |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1266 memcpy(&(sip->serveraddr), hosts->data, addr_size); |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1267 g_free(hosts->data); |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1268 hosts = g_slist_remove(hosts, hosts->data); |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1269 while(hosts) { |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1270 hosts = g_slist_remove(hosts, hosts->data); |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1271 g_free(hosts->data); |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1272 hosts = g_slist_remove(hosts, hosts->data); |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1273 } |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1274 |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1275 /* create socket for incoming connections */ |
|
12909
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1276 if(!gaim_network_listen_range(5060, 5160, SOCK_DGRAM, |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1277 simple_udp_host_resolved_listen_cb, sip)) { |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1278 gaim_connection_error(sip->gc, _("Could not create listen socket")); |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1279 return; |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1280 } |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1281 } |
|
12767
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1282 |
|
12909
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1283 static void |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1284 simple_tcp_connect_listen_cb(int listenfd, gpointer data) { |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1285 struct simple_account_data *sip = (struct simple_account_data*) data; |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1286 int error = 0; |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1287 |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1288 sip->listenfd = listenfd; |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1289 if(sip->listenfd == -1) { |
|
12767
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1290 gaim_connection_error(sip->gc, _("Could not create listen socket")); |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1291 return; |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1292 } |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1293 |
|
12909
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1294 gaim_debug_info("simple", "listenfd: %d\n", sip->listenfd); |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1295 sip->listenport = gaim_network_get_port_from_fd(sip->listenfd); |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1296 sip->listenpa = gaim_input_add(sip->listenfd, GAIM_INPUT_READ, |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1297 simple_newconn_cb, sip->gc); |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1298 gaim_debug_info("simple","connecting to %s port %d\n", |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1299 sip->realhostname, sip->realport); |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1300 /* open tcp connection to the server */ |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1301 error = gaim_proxy_connect(sip->account, sip->realhostname, |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1302 sip->realport, login_cb, sip->gc); |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1303 if(error) { |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1304 gaim_connection_error(sip->gc, _("Couldn't create socket")); |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1305 } |
|
12767
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1306 } |
|
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1307 |
|
12686
5f65a0cca87c
[gaim-migrate @ 15029]
Richard Laager <rlaager@wiktel.com>
parents:
12657
diff
changeset
|
1308 static void srvresolved(GaimSrvResponse *resp, int results, gpointer data) { |
| 11383 | 1309 struct simple_account_data *sip = (struct simple_account_data*) data; |
| 1310 | |
| 1311 gchar *hostname; | |
|
12730
d5b8f4dc1622
[gaim-migrate @ 15074]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12689
diff
changeset
|
1312 int port = gaim_account_get_int(sip->account, "port", 0); |
| 11383 | 1313 |
| 1314 | |
| 1315 /* find the host to connect to */ | |
| 1316 if(results) { | |
| 1317 hostname = g_strdup(resp->hostname); | |
| 12769 | 1318 if(!port) |
| 1319 port = resp->port; | |
| 11383 | 1320 g_free(resp); |
| 1321 } else { | |
| 1322 if(!gaim_account_get_bool(sip->account, "useproxy", FALSE)) { | |
| 1323 hostname = g_strdup(sip->servername); | |
| 1324 } else { | |
| 1325 hostname = g_strdup(gaim_account_get_string(sip->account, "proxy", sip->servername)); | |
| 1326 } | |
| 1327 } | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1328 |
| 11383 | 1329 sip->realhostname = hostname; |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1330 sip->realport = port; |
| 12769 | 1331 if(!sip->realport) sip->realport = 5060; |
| 11383 | 1332 /* TCP case */ |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1333 if(! sip->udp) { |
| 11409 | 1334 /* create socket for incoming connections */ |
|
12909
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1335 if(!gaim_network_listen_range(5060, 5160, SOCK_STREAM, |
|
8e3b85fe4a55
[gaim-migrate @ 15262]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12770
diff
changeset
|
1336 simple_tcp_connect_listen_cb, sip)) { |
| 11409 | 1337 gaim_connection_error(sip->gc, _("Could not create listen socket")); |
| 1338 return; | |
| 1339 } | |
| 11383 | 1340 } else { /* UDP */ |
| 1341 gaim_debug_info("simple", "using udp with server %s and port %d\n", hostname, port); | |
|
12565
3f895385e841
[gaim-migrate @ 14884]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12563
diff
changeset
|
1342 |
|
12767
53218d758ba9
[gaim-migrate @ 15114]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12760
diff
changeset
|
1343 gaim_gethostbyname_async(hostname, port, simple_udp_host_resolved, sip); |
| 11383 | 1344 } |
| 1345 } | |
| 1346 | |
| 11837 | 1347 static void simple_login(GaimAccount *account) |
| 11181 | 1348 { |
| 1349 GaimConnection *gc; | |
| 1350 struct simple_account_data *sip; | |
| 1351 gchar **userserver; | |
| 11210 | 1352 gchar *hosttoconnect; |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1353 |
| 11181 | 1354 const char *username = gaim_account_get_username(account); |
| 1355 | |
| 1356 gc = gaim_account_get_connection(account); | |
| 1357 gc->proto_data = sip = g_new0(struct simple_account_data,1); | |
| 1358 sip->gc=gc; | |
| 11189 | 1359 sip->account = account; |
| 11194 | 1360 sip->registerexpire = 900; |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1361 sip->udp = gaim_account_get_bool(account, "udp", FALSE); |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1362 if (strpbrk(username, " \t\v\r\n") != NULL) { |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1363 gaim_connection_error(gc, _("SIP usernames may not contain whitespaces or @ symbols")); |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1364 return; |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1365 } |
| 11181 | 1366 |
| 1367 userserver = g_strsplit(username, "@", 2); | |
| 1368 gaim_connection_set_display_name(gc,userserver[0]); | |
| 1369 sip->username = g_strdup(userserver[0]); | |
| 1370 sip->servername = g_strdup(userserver[1]); | |
| 1371 sip->password = g_strdup(gaim_connection_get_password(gc)); | |
| 1372 g_strfreev(userserver); | |
| 1373 | |
| 1374 sip->buddies = g_hash_table_new((GHashFunc)simple_ht_hash_nick, (GEqualFunc)simple_ht_equals_nick); | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1375 |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1376 gaim_connection_update_progress(gc, _("Connecting"), 1, 2); |
| 11181 | 1377 |
| 11837 | 1378 /* TODO: Set the status correctly. */ |
| 11181 | 1379 sip->status = g_strdup("available"); |
| 11189 | 1380 |
| 11210 | 1381 if(!gaim_account_get_bool(account, "useproxy", FALSE)) { |
| 1382 hosttoconnect = g_strdup(sip->servername); | |
| 1383 } else { | |
| 1384 hosttoconnect = g_strdup(gaim_account_get_string(account, "proxy", sip->servername)); | |
| 1385 } | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1386 |
| 11341 | 1387 /* TCP case */ |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1388 if(! sip->udp) { |
| 11383 | 1389 gaim_srv_resolve("sip","tcp",hosttoconnect,srvresolved, sip); |
| 11341 | 1390 } else { /* UDP */ |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1391 gaim_srv_resolve("sip","udp",hosttoconnect,srvresolved, sip); |
| 11181 | 1392 } |
| 11210 | 1393 g_free(hosttoconnect); |
| 11181 | 1394 } |
| 1395 | |
| 1396 static void simple_close(GaimConnection *gc) | |
| 1397 { | |
| 1398 struct simple_account_data *sip = gc->proto_data; | |
| 11194 | 1399 |
| 11341 | 1400 /* unregister */ |
| 11194 | 1401 do_register_exp(sip, 0); |
| 11346 | 1402 connection_free_all(sip); |
| 11341 | 1403 if(sip) { |
| 11650 | 1404 g_free(sip->servername); |
| 1405 g_free(sip->username); | |
| 1406 g_free(sip->password); | |
| 1407 g_free(sip->registrar.nonce); | |
| 13084 | 1408 g_free(sip->registrar.opaque); |
| 1409 g_free(sip->registrar.target); | |
| 11650 | 1410 g_free(sip->registrar.realm); |
| 13084 | 1411 g_free(sip->registrar.digest_session_key); |
| 11650 | 1412 g_free(sip->proxy.nonce); |
| 13084 | 1413 g_free(sip->proxy.opaque); |
| 1414 g_free(sip->proxy.target); | |
| 11650 | 1415 g_free(sip->proxy.realm); |
| 13084 | 1416 g_free(sip->proxy.digest_session_key); |
| 11650 | 1417 g_free(sip->sendlater); |
| 1418 g_free(sip->realhostname); | |
| 11409 | 1419 if(sip->listenpa) gaim_input_remove(sip->listenpa); |
|
12571
2c73e08032a1
[gaim-migrate @ 14890]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12570
diff
changeset
|
1420 if(sip->resendtimeout) gaim_timeout_remove(sip->resendtimeout); |
| 11346 | 1421 if(sip->registertimeout) gaim_timeout_remove(sip->registertimeout); |
| 12760 | 1422 sip->servername = sip->username = sip->password = sip->registrar.nonce = sip->registrar.realm = sip->proxy.nonce = sip->proxy.realm = sip->sendlater = sip->realhostname = NULL; |
| 11181 | 1423 } |
| 11650 | 1424 g_free(gc->proto_data); |
|
12571
2c73e08032a1
[gaim-migrate @ 14890]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12570
diff
changeset
|
1425 gc->proto_data = NULL; |
| 11181 | 1426 } |
| 1427 | |
| 11345 | 1428 /* not needed since privacy is checked for every subscribe */ |
| 1429 static void dummy_add_deny(GaimConnection *gc, const char *name) { | |
| 1430 } | |
| 1431 | |
| 1432 static void dummy_permit_deny(GaimConnection *gc) { | |
| 1433 } | |
| 1434 | |
| 11181 | 1435 static GaimPluginProtocolInfo prpl_info = |
| 1436 { | |
| 1437 0, | |
| 1438 NULL, /* user_splits */ | |
| 1439 NULL, /* protocol_options */ | |
|
12143
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1440 NO_BUDDY_ICONS, /* icon_spec */ |
| 11181 | 1441 simple_list_icon, /* list_icon */ |
|
12143
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1442 NULL, /* list_emblems */ |
| 11181 | 1443 NULL, /* status_text */ |
| 1444 NULL, /* tooltip_text */ | |
| 1445 simple_status_types, /* away_states */ | |
| 1446 NULL, /* blist_node_menu */ | |
|
12143
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1447 NULL, /* chat_info */ |
|
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1448 NULL, /* chat_info_defaults */ |
|
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1449 simple_login, /* login */ |
|
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1450 simple_close, /* close */ |
|
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1451 simple_im_send, /* send_im */ |
| 11181 | 1452 NULL, /* set_info */ |
|
12143
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1453 simple_typing, /* send_typing */ |
|
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1454 NULL, /* get_info */ |
| 11181 | 1455 simple_set_status, /* set_status */ |
| 1456 NULL, /* set_idle */ | |
| 1457 NULL, /* change_passwd */ | |
| 1458 simple_add_buddy, /* add_buddy */ | |
| 1459 NULL, /* add_buddies */ | |
| 1460 simple_remove_buddy, /* remove_buddy */ | |
| 1461 NULL, /* remove_buddies */ | |
|
12143
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1462 dummy_add_deny, /* add_permit */ |
|
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1463 dummy_add_deny, /* add_deny */ |
|
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1464 dummy_add_deny, /* rem_permit */ |
|
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1465 dummy_add_deny, /* rem_deny */ |
|
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1466 dummy_permit_deny, /* set_permit_deny */ |
|
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1467 NULL, /* join_chat */ |
| 11181 | 1468 NULL, /* reject_chat */ |
|
12143
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1469 NULL, /* get_chat_name */ |
|
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1470 NULL, /* chat_invite */ |
|
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1471 NULL, /* chat_leave */ |
| 11181 | 1472 NULL, /* chat_whisper */ |
|
12143
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1473 NULL, /* chat_send */ |
|
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1474 simple_keep_alive, /* keepalive */ |
| 11181 | 1475 NULL, /* register_user */ |
| 1476 NULL, /* get_cb_info */ | |
| 1477 NULL, /* get_cb_away */ | |
| 1478 NULL, /* alias_buddy */ | |
| 1479 NULL, /* group_buddy */ | |
| 1480 NULL, /* rename_group */ | |
| 1481 NULL, /* buddy_free */ | |
| 1482 NULL, /* convo_closed */ | |
| 1483 NULL, /* normalize */ | |
| 1484 NULL, /* set_buddy_icon */ | |
| 1485 NULL, /* remove_group */ | |
| 1486 NULL, /* get_cb_real_name */ | |
|
12143
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1487 NULL, /* set_chat_topic */ |
| 11181 | 1488 NULL, /* find_blist_chat */ |
|
12143
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1489 NULL, /* roomlist_get_list */ |
|
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1490 NULL, /* roomlist_cancel */ |
| 11181 | 1491 NULL, /* roomlist_expand_category */ |
| 1492 NULL, /* can_receive_file */ | |
|
12143
cbebda5f019c
[gaim-migrate @ 14444]
Richard Laager <rlaager@wiktel.com>
parents:
11837
diff
changeset
|
1493 NULL, /* send_file */ |
|
12600
e856f985a0b9
[gaim-migrate @ 14934]
Richard Laager <rlaager@wiktel.com>
parents:
12595
diff
changeset
|
1494 NULL, /* new_xfer */ |
|
12645
fc28451f5d96
[gaim-migrate @ 14983]
Richard Laager <rlaager@wiktel.com>
parents:
12600
diff
changeset
|
1495 NULL, /* offline_message */ |
|
12600
e856f985a0b9
[gaim-migrate @ 14934]
Richard Laager <rlaager@wiktel.com>
parents:
12595
diff
changeset
|
1496 NULL, /* whiteboard_prpl_ops */ |
|
e856f985a0b9
[gaim-migrate @ 14934]
Richard Laager <rlaager@wiktel.com>
parents:
12595
diff
changeset
|
1497 NULL, /* media_prpl_ops */ |
| 11181 | 1498 }; |
| 1499 | |
| 1500 | |
| 1501 static GaimPluginInfo info = | |
| 1502 { | |
| 1503 GAIM_PLUGIN_MAGIC, | |
| 1504 GAIM_MAJOR_VERSION, | |
| 1505 GAIM_MINOR_VERSION, | |
| 1506 GAIM_PLUGIN_PROTOCOL, /**< type */ | |
| 1507 NULL, /**< ui_requirement */ | |
| 1508 0, /**< flags */ | |
| 1509 NULL, /**< dependencies */ | |
| 1510 GAIM_PRIORITY_DEFAULT, /**< priority */ | |
| 1511 | |
| 12489 | 1512 "prpl-simple", /**< id */ |
| 1513 "SIMPLE", /**< name */ | |
| 11181 | 1514 VERSION, /**< version */ |
| 12489 | 1515 N_("SIP/SIMPLE Protocol Plugin"), /** summary */ |
| 1516 N_("The SIP/SIMPLE Protocol Plugin"), /** description */ | |
| 1517 "Thomas Butter <butter@uni-mannheim.de>", /**< author */ | |
| 11181 | 1518 GAIM_WEBSITE, /**< homepage */ |
| 1519 | |
| 1520 NULL, /**< load */ | |
| 1521 NULL, /**< unload */ | |
| 1522 NULL, /**< destroy */ | |
| 1523 | |
| 1524 NULL, /**< ui_info */ | |
| 1525 &prpl_info, /**< extra_info */ | |
| 1526 NULL, | |
| 1527 NULL | |
| 1528 }; | |
| 1529 | |
| 1530 static void _init_plugin(GaimPlugin *plugin) | |
| 1531 { | |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1532 GaimAccountUserSplit *split; |
| 11189 | 1533 GaimAccountOption *option; |
| 11181 | 1534 |
|
11396
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1535 split = gaim_account_user_split_new(_("Server"), "", '@'); |
|
be776f9b1818
[gaim-migrate @ 13627]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11383
diff
changeset
|
1536 prpl_info.user_splits = g_list_append(prpl_info.user_splits, split); |
| 11181 | 1537 |
| 12489 | 1538 option = gaim_account_option_bool_new(_("Publish status (note: everyone may watch you)"), "dopublish", TRUE); |
| 11345 | 1539 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); |
| 1540 | |
| 12769 | 1541 option = gaim_account_option_int_new(_("Connect port"), "port", 0); |
|
12730
d5b8f4dc1622
[gaim-migrate @ 15074]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12689
diff
changeset
|
1542 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); |
|
d5b8f4dc1622
[gaim-migrate @ 15074]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12689
diff
changeset
|
1543 |
|
d5b8f4dc1622
[gaim-migrate @ 15074]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12689
diff
changeset
|
1544 |
| 11189 | 1545 option = gaim_account_option_bool_new(_("Use UDP"), "udp", FALSE); |
| 1546 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); | |
| 12489 | 1547 option = gaim_account_option_bool_new(_("Use proxy"), "useproxy", FALSE); |
| 11210 | 1548 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); |
| 1549 option = gaim_account_option_string_new(_("Proxy"), "proxy", ""); | |
| 1550 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); | |
| 13084 | 1551 option = gaim_account_option_string_new(_("Auth User"), "authuser", ""); |
| 1552 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); | |
| 1553 option = gaim_account_option_string_new(_("Auth Domain"), "authdomain", ""); | |
| 1554 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); | |
| 11181 | 1555 } |
| 1556 | |
| 1557 GAIM_INIT_PLUGIN(simple, _init_plugin, info); |
