Changeset 2af3e23
- Timestamp:
- 2010-10-02T06:56:33Z (14 years ago)
- Branches:
- master
- Children:
- 385fbc4, 8e9e2b7
- Parents:
- 62f53b50
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/CHANGES
r62f53b50 r2af3e23 52 52 - Rewritten MSN module, implementing MSNP15 instead of the old MSNP8: 53 53 * MSNP8 support from MSN was getting pretty unreliable. There were issues 54 with remembering display names and adding contacts/auth requests. 54 with remembering display names and adding contacts/auth requests (or 55 even contacts silently getting blocked!). This upgrade should fix all 56 of that. 55 57 * Support for sending offline messages. 56 58 * Support for setting and reading status messages. -
protocols/msn/soap.c
r62f53b50 r2af3e23 270 270 struct im_connection *ic = soap_req->ic; 271 271 struct msn_data *md = ic->proto_data; 272 char pass[MAX_PASSPORT_PWLEN+1]; 272 273 273 274 if( sd->redirect ) … … 281 282 soap_req->url = g_strdup( SOAP_PASSPORT_SSO_URL ); 282 283 284 strncpy( pass, ic->acc->pass, MAX_PASSPORT_PWLEN ); 283 285 soap_req->payload = g_markup_printf_escaped( SOAP_PASSPORT_SSO_PAYLOAD, 284 ic->acc->user, ic->acc->pass, md->pp_policy );286 ic->acc->user, pass, md->pp_policy ); 285 287 286 288 return MSN_SOAP_OK; -
protocols/msn/soap.h
r62f53b50 r2af3e23 63 63 #define SOAP_PASSPORT_SSO_URL "https://login.live.com/RST.srf" 64 64 #define SOAP_PASSPORT_SSO_URL_MSN "https://msnia.login.live.com/pp800/RST.srf" 65 #define MAX_PASSPORT_PWLEN 16 65 66 66 67 #define SOAP_PASSPORT_SSO_PAYLOAD \
Note: See TracChangeset
for help on using the changeset viewer.