- Timestamp:
- 2005-12-14T01:17:25Z (19 years ago)
- Branches:
- master
- Children:
- 547f937
- Parents:
- 22bf64e (diff), 568aaf7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- protocols
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/jabber.c
r22bf64e r703f0f7 155 155 #define JCS_CLOSED 3 /* closed */ 156 156 157 158 static char *jabber_name()159 {160 return "Jabber";161 }162 157 163 158 #define STATE_EVT(arg) if(gjc->on_state) { (gjc->on_state)(gjc, (arg) ); } … … 2368 2363 } 2369 2364 2370 static struct prpl *my_protocol = NULL; 2371 2372 void jabber_init(struct prpl *ret) 2373 { 2365 2366 void jabber_init() 2367 { 2368 struct prpl *ret = g_new0(struct prpl, 1); 2369 2374 2370 /* the NULL's aren't required but they're nice to have */ 2375 ret->protocol = PROTO_JABBER; 2376 ret->name = jabber_name; 2371 ret->name = "jabber"; 2377 2372 ret->away_states = jabber_away_states; 2378 2373 ret->actions = jabber_actions; … … 2398 2393 ret->cmp_buddynames = g_strcasecmp; 2399 2394 2400 my_protocol = ret;2401 } 2395 register_protocol (ret); 2396 } -
protocols/msn/msn.c
r22bf64e r703f0f7 26 26 #include "nogaim.h" 27 27 #include "msn.h" 28 29 static struct prpl *my_protocol = NULL;30 28 31 29 static void msn_login( struct aim_user *acct ) … … 375 373 } 376 374 377 void msn_init(struct prpl *ret) 378 { 379 ret->protocol = PROTO_MSN; 375 void msn_init() 376 { 377 struct prpl *ret = g_new0(struct prpl, 1); 378 ret->name = "msn"; 380 379 ret->login = msn_login; 381 380 ret->close = msn_close; … … 400 399 ret->cmp_buddynames = g_strcasecmp; 401 400 402 my_protocol = ret;403 } 401 register_protocol(ret); 402 } -
protocols/nogaim.c
r22bf64e r703f0f7 39 39 #include <iconv.h> 40 40 41 struct prpl *proto_prpl[PROTO_MAX];42 char proto_name[PROTO_MAX][8] = { "TOC", "OSCAR", "YAHOO", "ICQ", "MSN", "", "", "", "JABBER", "", "", "", "", "", "", "" };43 44 41 static char *proto_away_alias[7][5] = 45 42 { … … 58 55 GSList *connections; 59 56 57 #ifdef WITH_PLUGINS 58 gboolean load_plugin(char *path) 59 { 60 void (*init_function) (void); 61 62 GModule *mod = g_module_open(path, G_MODULE_BIND_LAZY); 63 64 if(!mod) { 65 log_message(LOGLVL_ERROR, "Can't find `%s', not loading", path); 66 return FALSE; 67 } 68 69 if(!g_module_symbol(mod,"init_plugin",(gpointer *) &init_function)) { 70 log_message(LOGLVL_WARNING, "Can't find function `init_plugin' in `%s'\n", path); 71 return FALSE; 72 } 73 74 init_function(); 75 76 return TRUE; 77 } 78 79 void load_plugins(void) 80 { 81 GDir *dir; 82 GError *error = NULL; 83 84 dir = g_dir_open(PLUGINDIR, 0, &error); 85 86 if (dir) { 87 const gchar *entry; 88 char *path; 89 90 while ((entry = g_dir_read_name(dir))) { 91 path = g_build_filename(PLUGINDIR, entry, NULL); 92 if(!path) { 93 log_message(LOGLVL_WARNING, "Can't build path for %s\n", entry); 94 continue; 95 } 96 97 load_plugin(path); 98 99 g_free(path); 100 } 101 102 g_dir_close(dir); 103 } 104 } 105 #endif 60 106 61 107 /* nogaim.c */ 62 108 109 GList *protocols = NULL; 110 111 void register_protocol (struct prpl *p) 112 { 113 protocols = g_list_append(protocols, p); 114 } 115 116 117 struct prpl *find_protocol(const char *name) 118 { 119 GList *gl; 120 for (gl = protocols; gl; gl = gl->next) 121 { 122 struct prpl *proto = gl->data; 123 if(!g_strcasecmp(proto->name, name)) 124 return proto; 125 } 126 return NULL; 127 } 128 129 /* nogaim.c */ 63 130 void nogaim_init() 64 131 { 65 proto_prpl[PROTO_MSN] = g_new0 ( struct prpl, 1 ); 132 extern void msn_init(); 133 extern void oscar_init(); 134 extern void byahoo_init(); 135 extern void jabber_init(); 136 66 137 #ifdef WITH_MSN 67 msn_init( proto_prpl[PROTO_MSN]);138 msn_init(); 68 139 #endif 69 140 70 proto_prpl[PROTO_OSCAR] = g_new0( struct prpl, 1 );71 141 #ifdef WITH_OSCAR 72 oscar_init( proto_prpl[PROTO_OSCAR]);142 oscar_init(); 73 143 #endif 74 144 75 proto_prpl[PROTO_YAHOO] = g_new0( struct prpl, 1 );76 145 #ifdef WITH_YAHOO 77 byahoo_init( proto_prpl[PROTO_YAHOO]);146 byahoo_init(); 78 147 #endif 79 148 80 proto_prpl[PROTO_JABBER] = g_new0( struct prpl, 1 );81 149 #ifdef WITH_JABBER 82 jabber_init( proto_prpl[PROTO_JABBER] ); 150 jabber_init(); 151 #endif 152 153 #ifdef WITH_PLUGINS 154 load_plugins(); 83 155 #endif 84 156 } … … 172 244 gc = g_new0( struct gaim_connection, 1 ); 173 245 174 gc->protocol = user->protocol; 175 gc->prpl = proto_prpl[gc->protocol]; 246 gc->prpl = user->prpl; 176 247 g_snprintf( gc->username, sizeof( gc->username ), "%s", user->username ); 177 248 g_snprintf( gc->password, sizeof( gc->password ), "%s", user->password ); … … 254 325 /* Try to find a different connection on the same protocol. */ 255 326 for( a = gc->irc->accounts; a; a = a->next ) 256 if( proto_prpl[a->protocol]== gc->prpl && a->gc != gc )327 if( a->prpl == gc->prpl && a->gc != gc ) 257 328 break; 258 329 259 330 /* If we found one, add the screenname to the acc_id. */ 260 331 if( a ) 261 g_snprintf( acc_id, 32, "%s(%s)", proto_name[gc->protocol], gc->username );332 g_snprintf( acc_id, 32, "%s(%s)", gc->prpl->name, gc->username ); 262 333 else 263 g_snprintf( acc_id, 32, "%s", proto_name[gc->protocol]);334 g_snprintf( acc_id, 32, "%s", gc->prpl->name ); 264 335 265 336 irc_usermsg( gc->irc, "%s - %s", acc_id, msg ); … … 295 366 if( u && u->away ) proto_away( gc, u->away ); 296 367 297 if( gc->protocol == PROTO_ICQ)368 if( !strcmp(gc->prpl->name, "icq") ) 298 369 { 299 370 for( u = gc->irc->users; u; u = u->next ) … … 430 501 431 502 memset( nick, 0, MAX_NICK_LENGTH + 1 ); 432 strcpy( nick, nick_get( gc->irc, handle, gc->pr otocol, realname ) );503 strcpy( nick, nick_get( gc->irc, handle, gc->prpl, realname ) ); 433 504 434 505 u = user_add( gc->irc, nick ); … … 454 525 else 455 526 { 456 u->host = g_strdup( proto_name[gc->user->protocol]);527 u->host = g_strdup( gc->user->prpl->name ); 457 528 u->user = g_strdup( handle ); 458 529 } … … 583 654 } 584 655 585 if( ( type & UC_UNAVAILABLE ) && ( gc->protocol == PROTO_OSCAR || gc->protocol == PROTO_TOC) )656 if( ( type & UC_UNAVAILABLE ) && ( !strcmp(gc->prpl->name, "oscar") || !strcmp(gc->prpl->name, "icq")) ) 586 657 { 587 658 u->away = g_strdup( "Away" ); 588 659 } 589 else if( ( type & UC_UNAVAILABLE ) && ( gc->protocol == PROTO_JABBER) )660 else if( ( type & UC_UNAVAILABLE ) && ( !strcmp(gc->prpl->name, "jabber") ) ) 590 661 { 591 662 if( type & UC_DND ) -
protocols/nogaim.h
r22bf64e r703f0f7 72 72 /* we need to do either oscar or TOC */ 73 73 /* we make this as an int in case if we want to add more protocols later */ 74 int protocol;75 74 struct prpl *prpl; 76 75 guint32 flags; … … 152 151 char user_info[2048]; 153 152 int options; 154 int protocol;153 struct prpl *prpl; 155 154 /* prpls can use this to save information about the user, 156 155 * like which server to connect to, etc */ … … 162 161 163 162 struct prpl { 164 int protocol;165 163 int options; 166 c har *(* name)();164 const char *name; 167 165 168 166 /* for ICQ and Yahoo, who have off/on per-conversation options */ … … 224 222 }; 225 223 226 #define PROTO_TOC 0227 #define PROTO_OSCAR 1228 #define PROTO_YAHOO 2229 #define PROTO_ICQ 3230 #define PROTO_MSN 4231 #define PROTO_IRC 5232 #define PROTO_FTP 6233 #define PROTO_VGATE 7234 #define PROTO_JABBER 8235 #define PROTO_NAPSTER 9236 #define PROTO_ZEPHYR 10237 #define PROTO_GADUGADU 11238 #define PROTO_MAX 16239 240 extern char proto_name[PROTO_MAX][8];241 242 224 #define UC_UNAVAILABLE 1 243 225 … … 249 231 250 232 G_MODULE_EXPORT GSList *get_connections(); 251 extern struct prpl *proto_prpl[16]; 233 G_MODULE_EXPORT struct prpl *find_protocol(const char *name); 234 G_MODULE_EXPORT void register_protocol(struct prpl *); 252 235 253 236 /* nogaim.c */ … … 319 302 G_MODULE_EXPORT void info_string_append(GString *str, char *newline, char *name, char *value); 320 303 321 #ifdef WITH_MSN322 /* msn.c */323 G_MODULE_EXPORT void msn_init( struct prpl *ret );324 #endif325 326 #ifdef WITH_OSCAR327 /* oscar.c */328 G_MODULE_EXPORT void oscar_init( struct prpl *ret );329 #endif330 331 #ifdef WITH_JABBER332 /* jabber.c */333 G_MODULE_EXPORT void jabber_init( struct prpl *ret );334 #endif335 336 #ifdef WITH_YAHOO337 /* yahoo.c */338 G_MODULE_EXPORT void byahoo_init( struct prpl *ret );339 #endif340 341 304 /* prefs.c */ 342 305 G_MODULE_EXPORT void build_block_list(); -
protocols/oscar/oscar.c
r22bf64e r703f0f7 357 357 odata->icq = TRUE; 358 358 /* this is odd but it's necessary for a proper do_import and do_export */ 359 gc->protocol = PROTO_ICQ;360 359 gc->password[8] = 0; 361 360 } else { 362 gc->protocol = PROTO_TOC;363 361 gc->flags |= OPT_CONN_HTML; 364 362 } … … 2634 2632 } 2635 2633 2636 static struct prpl *my_protocol = NULL; 2637 2638 void oscar_init(struct prpl *ret) { 2639 ret-> protocol = PROTO_OSCAR;2634 void oscar_init() 2635 { 2636 struct prpl *ret = g_new0(struct prpl, 1); 2637 ret->name = "oscar"; 2640 2638 ret->away_states = oscar_away_states; 2641 2639 ret->login = oscar_login; … … 2659 2657 ret->cmp_buddynames = aim_sncmp; 2660 2658 ret->get_status_string = oscar_get_status_string; 2661 2662 2659 ret->send_typing = oscar_send_typing; 2663 2660 2664 my_protocol = ret;2665 } 2661 register_protocol(ret); 2662 } -
protocols/yahoo/yahoo.c
r22bf64e r703f0f7 64 64 }; 65 65 66 static char *yahoo_name()67 {68 return "Yahoo";69 }70 71 static struct prpl *my_protocol = NULL;72 66 static GSList *byahoo_inputs = NULL; 73 67 static int byahoo_chat_id = 0; … … 396 390 } 397 391 398 void byahoo_init( struct prpl *ret)399 { 400 ret->protocol = PROTO_YAHOO;401 ret->name = yahoo_name;392 void byahoo_init( ) 393 { 394 struct prpl *ret = g_new0(struct prpl, 1); 395 ret->name = "yahoo"; 402 396 403 397 ret->login = byahoo_login; 404 398 ret->close = byahoo_close; 405 399 ret->send_im = byahoo_send_im; 406 ret->send_typing = byahoo_send_typing;407 400 ret->get_info = byahoo_get_info; 408 401 ret->away_states = byahoo_away_states; … … 412 405 ret->remove_buddy = byahoo_remove_buddy; 413 406 ret->get_status_string = byahoo_get_status_string; 407 ret->send_typing = byahoo_send_typing; 414 408 415 409 ret->chat_send = byahoo_chat_send; … … 419 413 ret->cmp_buddynames = g_strcasecmp; 420 414 421 my_protocol = ret;415 register_protocol(ret); 422 416 } 423 417 … … 433 427 yd = gc->proto_data; 434 428 435 if( gc->protocol == PROTO_YAHOO&& yd->y2_id == id )429 if( !strcmp(gc->prpl->name, "yahoo") && yd->y2_id == id ) 436 430 return( gc ); 437 431 }
Note: See TracChangeset
for help on using the changeset viewer.