- Timestamp:
- 2015-03-15T14:41:47Z (10 years ago)
- Children:
- e6ef4a8
- Parents:
- c5a1502
- git-author:
- dequis <dx@…> (02-03-15 03:43:04)
- git-committer:
- dequis <dx@…> (15-03-15 14:41:47)
- Location:
- protocols/msn
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/Makefile
rc5a1502 re2bf725 13 13 14 14 # [SH] Program variables 15 objects = msn.o msn_util.o ns.o soap.o tables.o 15 objects = msn.o msn_util.o ns.o soap.o tables.o gw.o 16 16 17 17 LFLAGS += -r -
protocols/msn/msn.h
rc5a1502 re2bf725 124 124 } msn_flags_t; 125 125 126 struct 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 126 145 struct msn_data { 127 146 int fd, inpa; … … 152 171 GTree *domaintree; 153 172 int adl_todo; 173 174 gboolean is_http; 175 struct msn_gw *gw; 154 176 }; 155 177
Note: See TracChangeset
for help on using the changeset viewer.