- Timestamp:
- 2006-10-21T19:49:57Z (18 years ago)
- Branches:
- master
- Children:
- 91bd910
- Parents:
- a5ac9f9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/msn.c
ra5ac9f9 r2a29eac 42 42 struct msn_data *md = g_new0( struct msn_data, 1 ); 43 43 44 set_login_progress( gc, 1, "Connecting" );45 46 44 gc->proto_data = md; 47 45 md->fd = -1; … … 54 52 } 55 53 54 set_login_progress( gc, 1, "Connecting" ); 55 56 56 md->fd = proxy_connect( "messenger.hotmail.com", 1863, msn_ns_connected, gc ); 57 57 if( md->fd < 0 ) … … 59 59 hide_login_progress( gc, "Could not connect to server" ); 60 60 signoff( gc ); 61 } 62 else 63 { 64 md->gc = gc; 65 md->away_state = msn_away_state_list; 66 67 msn_connections = g_slist_append( msn_connections, gc ); 68 } 61 return; 62 } 63 64 md->gc = gc; 65 md->away_state = msn_away_state_list; 66 67 msn_connections = g_slist_append( msn_connections, gc ); 69 68 } 70 69
Note: See TracChangeset
for help on using the changeset viewer.