summaryrefslogtreecommitdiff
path: root/lib/udp.c
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>2013-03-01 14:34:21 +0100
committerLinus Nordberg <linus@nordberg.se>2013-03-01 14:34:21 +0100
commitf3252b34114236c65624862d2a572f5e290e8cc8 (patch)
tree7a7f720b89443c1cd2dd80290ed039e10d0f7d67 /lib/udp.c
parentcb9748d119ec0ebd4e8e1bbecb5ef86a65a56061 (diff)
Revamping for listeners.
Split rs_connection into rs_baseconn plus rs_connection and rs_listener. Connections now has a state variable. Connect buffer event and fd of _source_ connection, not that of conn->active_peer. The connection object referred to by a peer is not meant for using as a connection, only for reporting errors on. Make sure things are sane even when not using a config file. Bump library interface version to 1.0.0 since it's changed.
Diffstat (limited to 'lib/udp.c')
-rw-r--r--lib/udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/udp.c b/lib/udp.c
index 71d7003..22a8375 100644
--- a/lib/udp.c
+++ b/lib/udp.c
@@ -129,7 +129,7 @@ _evcb (evutil_socket_t fd, short what, void *user_data)
assert (msg);
assert (msg->conn);
- if (!msg->conn->is_connected)
+ if (msg->conn->state == RS_CONN_STATE_CONNECTING)
event_on_connect (msg->conn, msg);
if (msg->conn->out_queue)