Changeset 6caa56a
- Timestamp:
- 2005-11-30T13:36:59Z (19 years ago)
- Branches:
- master
- Children:
- 7c2d798b
- Parents:
- c3c2e14
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/proxy.c
rc3c2e14 r6caa56a 124 124 } 125 125 126 static void no_one_calls(gpointer data, gint source, GaimInputCondition cond)126 static void gaim_io_connected(gpointer data, gint source, GaimInputCondition cond) 127 127 { 128 128 struct PHB *phb = data; … … 173 173 if (connect(fd, (struct sockaddr *)sin, sizeof(*sin)) < 0) { 174 174 if (sockerr_again()) { 175 phb->inpa = gaim_input_add(fd, GAIM_INPUT_WRITE, no_one_calls, phb);175 phb->inpa = gaim_input_add(fd, GAIM_INPUT_WRITE, gaim_io_connected, phb); 176 176 phb->fd = fd; 177 177 } else {
Note: See TracChangeset
for help on using the changeset viewer.