Changeset 767b2d1 for protocols/msn/gw.c
- Timestamp:
- 2015-05-31T02:40:04Z (9 years ago)
- Children:
- 074c9b6
- Parents:
- 2ca933c
- git-author:
- dequis <dx@…> (07-04-15 12:59:51)
- git-committer:
- dequis <dx@…> (31-05-15 02:40:04)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/gw.c
r2ca933c r767b2d1 2 2 #include "lib/http_client.h" 3 3 #include "msn.h" 4 5 #define GATEWAY_HOST "geo.gateway.messenger.live.com"6 #define GATEWAY_PORT 4437 4 8 5 #define REQUEST_TEMPLATE \ … … 18 15 { 19 16 struct msn_gw *gw = g_new0(struct msn_gw, 1); 20 gw->last_host = g_strdup( GATEWAY_HOST);21 gw->port = GATEWAY_PORT;22 gw->ssl = ( GATEWAY_PORT == 443);17 gw->last_host = g_strdup(MSN_HTTP_HOST); 18 gw->port = MSN_HTTP_PORT; 19 gw->ssl = (MSN_HTTP_PORT == 443); 23 20 gw->poll_timeout = -1; 24 21 gw->ic = ic;
Note: See TracChangeset
for help on using the changeset viewer.