- Timestamp:
- 2008-02-09T17:58:13Z (17 years ago)
- Branches:
- master
- Children:
- f55cfe9
- Parents:
- a13855a
- Location:
- protocols
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/jabber.c
ra13855a r5a71d9c 511 511 512 512 ret->name = "jabber"; 513 ret->mms = 0; /* no limit */ 513 514 ret->login = jabber_login; 514 515 ret->init = jabber_init; -
protocols/msn/msn.c
ra13855a r5a71d9c 372 372 373 373 ret->name = "msn"; 374 ret->mms = 1409; /* this guess taken from libotr UPGRADING file */ 374 375 ret->login = msn_login; 375 376 ret->init = msn_init; -
protocols/nogaim.c
ra13855a r5a71d9c 603 603 604 604 /* LISPy... */ 605 if( ( set_getbool( &ic->irc->set, "away_devoice" ) ) && /* Don't do a thing when user doesn't want it */ 606 ( u->online ) && /* Don't touch offline people */ 607 ( ( ( u->online != oo ) && !u->away ) || /* Voice joining people */ 608 ( ( u->online == oo ) && ( oa == !u->away ) ) ) ) /* (De)voice people changing state */ 605 if( ( u->online ) && /* Don't touch offline people */ 606 ( ( ( u->online != oo ) && !u->away ) || /* Do joining people */ 607 ( ( u->online == oo ) && ( oa == !u->away ) ) ) ) /* Do people changing state */ 609 608 { 610 609 char *from; … … 619 618 ic->irc->myhost ); 620 619 } 621 irc_write( ic->irc, ":%s MODE %s %cv %s", from, ic->irc->channel, 622 u->away?'-':'+', u->nick ); 620 if(!strcmp(set_getstr(&ic->irc->set, "voice_buddies"), "notaway")) { 621 irc_write( ic->irc, ":%s MODE %s %cv %s", from, ic->irc->channel, 622 u->away?'-':'+', u->nick ); 623 } 624 if(!strcmp(set_getstr(&ic->irc->set, "op_buddies"), "notaway")) { 625 irc_write( ic->irc, ":%s MODE %s %co %s", from, ic->irc->channel, 626 u->away?'-':'+', u->nick ); 627 } 623 628 g_free( from ); 624 629 } -
protocols/nogaim.h
ra13855a r5a71d9c 136 136 * - The user sees this name ie. when imcb_log() is used. */ 137 137 const char *name; 138 /* Maximum Message Size of this protocol. 139 * - Introduced for OTR, in order to fragment large protocol messages. 140 * - 0 means "unlimited". */ 141 unsigned int mms; 138 142 139 143 /* Added this one to be able to add per-account settings, don't think -
protocols/oscar/oscar.c
ra13855a r5a71d9c 2603 2603 struct prpl *ret = g_new0(struct prpl, 1); 2604 2604 ret->name = "oscar"; 2605 ret->mms = 2343; /* this guess taken from libotr UPGRADING file */ 2605 2606 ret->away_states = oscar_away_states; 2606 2607 ret->init = oscar_init; -
protocols/yahoo/yahoo.c
ra13855a r5a71d9c 354 354 struct prpl *ret = g_new0(struct prpl, 1); 355 355 ret->name = "yahoo"; 356 ret->mms = 832; /* this guess taken from libotr UPGRADING file */ 356 357 ret->init = byahoo_init; 357 358
Note: See TracChangeset
for help on using the changeset viewer.