- Timestamp:
- 2010-10-09T18:41:19Z (14 years ago)
- Branches:
- master
- Children:
- d150a9d
- Parents:
- 23b29c6 (diff), 27b407f (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:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/bee_user.c
r23b29c6 r6197702 265 265 } 266 266 267 if( ( g_strcasecmp( set_getstr( &ic->bee->set, "strip_html" ), "always" ) == 0 ) ||268 ( ( ic->flags & OPT_DOES_HTML ) && set_getbool( &ic->bee->set, "strip_html" ) ) )269 strip_html( msg );270 271 267 if( bee->ui->user_msg && bu ) 272 268 bee->ui->user_msg( bee, bu, msg, sent_at ); -
protocols/jabber/jabber.c
r23b29c6 r6197702 557 557 558 558 ret->name = "jabber"; 559 ret->mms = 0; /* no limit */ 559 560 ret->login = jabber_login; 560 561 ret->init = jabber_init; -
protocols/msn/msn.c
r23b29c6 r6197702 359 359 360 360 ret->name = "msn"; 361 ret->mms = 1409; /* this guess taken from libotr UPGRADING file */ 361 362 ret->login = msn_login; 362 363 ret->init = msn_init; -
protocols/nogaim.h
r23b29c6 r6197702 68 68 #define OPT_TYPING 0x00000100 /* Some pieces of code make assumptions */ 69 69 #define OPT_THINKING 0x00000200 /* about these values... Stupid me! */ 70 #define OPT_NOOTR 0x00001000 /* protocol not suitable for OTR */ 70 71 71 72 /* ok. now the fun begins. first we create a connection structure */ … … 142 143 const char *name; 143 144 void *data; 145 /* Maximum Message Size of this protocol. 146 * - Introduced for OTR, in order to fragment large protocol messages. 147 * - 0 means "unlimited". */ 148 unsigned int mms; 144 149 145 150 /* Added this one to be able to add per-account settings, don't think -
protocols/oscar/oscar.c
r23b29c6 r6197702 2612 2612 struct prpl *ret = g_new0(struct prpl, 1); 2613 2613 ret->name = "oscar"; 2614 ret->mms = 2343; /* this guess taken from libotr UPGRADING file */ 2614 2615 ret->away_states = oscar_away_states; 2615 2616 ret->init = oscar_init; -
protocols/twitter/twitter.c
r23b29c6 r6197702 534 534 struct prpl *ret = g_new0(struct prpl, 1); 535 535 536 ret->options = OPT_NOOTR; 536 537 ret->name = "twitter"; 537 538 ret->login = twitter_login; -
protocols/yahoo/yahoo.c
r23b29c6 r6197702 379 379 struct prpl *ret = g_new0(struct prpl, 1); 380 380 ret->name = "yahoo"; 381 ret->mms = 832; /* this guess taken from libotr UPGRADING file */ 381 382 ret->init = byahoo_init; 382 383
Note: See TracChangeset
for help on using the changeset viewer.