Configure events after obtaining a socket.
This commit is contained in:
parent
294ce72441
commit
ee7844905f
1 changed files with 7 additions and 8 deletions
|
@ -395,17 +395,16 @@ void setup_outgoing_connection(outgoing_t *outgoing)
|
||||||
c->outgoing = outgoing;
|
c->outgoing = outgoing;
|
||||||
c->last_ping_time = now;
|
c->last_ping_time = now;
|
||||||
|
|
||||||
event_set(&c->ev, c->socket, EV_READ | EV_PERSIST, handle_meta_connection_data, c);
|
|
||||||
event_set(&c->outev, c->socket, EV_WRITE | EV_PERSIST, flush_meta, c);
|
|
||||||
if(event_add(&c->ev, NULL) < 0) {
|
|
||||||
logger(LOG_ERR, _("event_add failed: %s"), strerror(errno));
|
|
||||||
connection_del(c);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
connection_add(c);
|
connection_add(c);
|
||||||
|
|
||||||
do_outgoing_connection(c);
|
do_outgoing_connection(c);
|
||||||
|
|
||||||
|
event_set(&c->ev, c->socket, EV_READ | EV_PERSIST, handle_meta_connection_data, c);
|
||||||
|
event_set(&c->outev, c->socket, EV_WRITE | EV_PERSIST, flush_meta, c);
|
||||||
|
if(event_add(&c->ev, NULL) < 0) {
|
||||||
|
logger(LOG_EMERG, _("event_add failed: %s"), strerror(errno));
|
||||||
|
abort();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue