- Timestamp:
- 2011-01-22T17:29:55Z (14 years ago)
- Branches:
- master
- Children:
- 02e06b5
- Parents:
- 50c9996
- Location:
- protocols/msn
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/soap.c
r50c9996 r5282ffd 278 278 sd->redirect = NULL; 279 279 } 280 /* MS changed this URL and broke the old MSN-specific one. The generic 281 one works, forwarding us to a msn.com URL that works. Takes an extra 282 second, but that's better than not being able to log in at all. :-/ 280 283 else if( g_str_has_suffix( ic->acc->user, "@msn.com" ) ) 281 284 soap_req->url = g_strdup( SOAP_PASSPORT_SSO_URL_MSN ); 282 285 else 283 soap_req->url = g_strdup( SOAP_PASSPORT_SSO_URL ); 286 */ 287 soap_req->url = g_strdup( SOAP_PASSPORT_SSO_URL ); 284 288 285 289 strncpy( pass, ic->acc->pass, MAX_PASSPORT_PWLEN ); -
protocols/msn/soap.h
r50c9996 r5282ffd 62 62 63 63 #define SOAP_PASSPORT_SSO_URL "https://login.live.com/RST.srf" 64 #define SOAP_PASSPORT_SSO_URL_MSN "https://msnia.login.live.com/pp 800/RST.srf"64 #define SOAP_PASSPORT_SSO_URL_MSN "https://msnia.login.live.com/pp900/RST.srf" 65 65 #define MAX_PASSPORT_PWLEN 16 66 66
Note: See TracChangeset
for help on using the changeset viewer.