Changeset 3fbce97 for protocols/msn/gw.c
- Timestamp:
- 2016-09-24T20:14:34Z (8 years ago)
- Children:
- ba52ac5
- Parents:
- 63cad66 (diff), 82cb190 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/gw.c
r63cad66 r3fbce97 22 22 gw->ssl = (GATEWAY_PORT == 443); 23 23 gw->poll_timeout = -1; 24 gw->write_timeout = -1; 24 25 gw->ic = ic; 25 26 gw->md = ic->proto_data; … … 34 35 b_event_remove(gw->poll_timeout); 35 36 } 37 38 if (gw->write_timeout != -1) { 39 b_event_remove(gw->write_timeout); 40 } 41 36 42 g_byte_array_free(gw->in, TRUE); 37 43 g_byte_array_free(gw->out, TRUE); … … 189 195 } 190 196 191 void msn_gw_write(struct msn_gw *gw, char *buf, size_t len) 192 { 193 g_byte_array_append(gw->out, (const guint8 *) buf, len); 197 static gboolean msn_gw_write_cb(gpointer data, gint source, b_input_condition cond) 198 { 199 struct msn_gw *gw; 200 201 if (!(gw = msn_gw_from_ic(data))) { 202 return FALSE; 203 } 204 194 205 if (!gw->open) { 195 206 msn_gw_open(gw); … … 197 208 msn_gw_dorequest(gw, NULL); 198 209 } 199 } 210 211 gw->write_timeout = -1; 212 return FALSE; 213 } 214 215 void msn_gw_write(struct msn_gw *gw, char *buf, size_t len) 216 { 217 g_byte_array_append(gw->out, (const guint8 *) buf, len); 218 219 /* do a bit of buffering here to send several commands with a single request */ 220 if (gw->write_timeout == -1) { 221 gw->write_timeout = b_timeout_add(1, msn_gw_write_cb, gw->ic); 222 } 223 }
Note: See TracChangeset
for help on using the changeset viewer.