Ignore:
Timestamp:
2015-04-10T17:10:40Z (9 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
3b09b38
Parents:
d550358
git-author:
dequis <dx@…> (02-03-15 03:43:04)
git-committer:
dequis <dx@…> (10-04-15 17:10:40)
Message:

msn: start of the http gateway code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/msn.h

    rd550358 rcfeadc3  
    124124} msn_flags_t;
    125125
     126struct msn_gw {
     127        char *last_host;
     128        int port;
     129        gboolean ssl;
     130
     131        char *session_id;
     132
     133        GByteArray *in;
     134        GByteArray *out;
     135
     136        int poll_timeout;
     137
     138        b_event_handler callback;
     139        gpointer data;
     140
     141        gboolean open;
     142        gboolean waiting;
     143};
     144
    126145struct msn_data {
    127146        int fd, inpa;
     
    152171        GTree *domaintree;
    153172        int adl_todo;
     173
     174        gboolean is_http;
     175        struct msn_gw *gw;
    154176};
    155177
Note: See TracChangeset for help on using the changeset viewer.