Changeset e2bf725


Ignore:
Timestamp:
2015-03-15T14:41:47Z (9 years ago)
Author:
dequis <dx@…>
Children:
e6ef4a8
Parents:
c5a1502
git-author:
dequis <dx@…> (02-03-15 03:43:04)
git-committer:
dequis <dx@…> (15-03-15 14:41:47)
Message:

msn: start of the http gateway code

Location:
protocols/msn
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/Makefile

    rc5a1502 re2bf725  
    1313
    1414# [SH] Program variables
    15 objects = msn.o msn_util.o ns.o soap.o tables.o
     15objects = msn.o msn_util.o ns.o soap.o tables.o gw.o
    1616
    1717LFLAGS += -r
  • protocols/msn/msn.h

    rc5a1502 re2bf725  
    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.