- Timestamp:
- 2010-08-23T23:12:24Z (14 years ago)
- Branches:
- master
- Children:
- ad2d8bc
- Parents:
- 237eadd (diff), eb6df6a (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
r237eadd rbe999a5 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
r237eadd rbe999a5 336 336 337 337 ret->name = "msn"; 338 ret->mms = 1409; /* this guess taken from libotr UPGRADING file */ 338 339 ret->login = msn_login; 339 340 ret->init = msn_init; -
protocols/nogaim.h
r237eadd rbe999a5 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
r237eadd rbe999a5 2604 2604 struct prpl *ret = g_new0(struct prpl, 1); 2605 2605 ret->name = "oscar"; 2606 ret->mms = 2343; /* this guess taken from libotr UPGRADING file */ 2606 2607 ret->away_states = oscar_away_states; 2607 2608 ret->init = oscar_init; -
protocols/twitter/twitter.c
r237eadd rbe999a5 519 519 struct prpl *ret = g_new0(struct prpl, 1); 520 520 521 ret->options = OPT_NOOTR; 521 522 ret->name = "twitter"; 522 523 ret->login = twitter_login; -
protocols/yahoo/yahoo.c
r237eadd rbe999a5 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.