summaryrefslogtreecommitdiff
path: root/lib/conn.c
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>2013-01-24 08:32:23 +0100
committerLinus Nordberg <linus@nordberg.se>2013-01-24 09:30:02 +0100
commit683e3e1bbbdfe2f08dc12f1e840e71ed6088a0e3 (patch)
tree73e26b7fe3cd2231f9a82fa1a10fe3c196ce8585 /lib/conn.c
parent54ca8b0dc915b6fac25de9d7cdaf6154dbbb27da (diff)
Rename rs_packet_flags members.
Uppercase to make them appear as the constants they are, as opposed to variables. Remove 'flag' suffix, typically used for variables. Spell out HEADER.
Diffstat (limited to 'lib/conn.c')
-rw-r--r--lib/conn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/conn.c b/lib/conn.c
index c6692a2..09a1ac0 100644
--- a/lib/conn.c
+++ b/lib/conn.c
@@ -207,7 +207,7 @@ _rcb (struct rs_packet *packet, void *user_data)
assert (pkt);
assert (pkt->conn);
- pkt->flags |= rs_packet_received_flag;
+ pkt->flags |= RS_PACKET_RECEIVED;
if (pkt->conn->bev)
bufferevent_disable (pkt->conn->bev, EV_WRITE|EV_READ);
else
@@ -234,7 +234,7 @@ rs_conn_receive_packet (struct rs_connection *conn,
conn->callbacks.received_cb = _rcb;
conn->user_data = pkt;
- pkt->flags &= ~rs_packet_received_flag;
+ pkt->flags &= ~RS_PACKET_RECEIVED;
if (conn->bev) /* TCP. */
{
@@ -267,7 +267,7 @@ rs_conn_receive_packet (struct rs_connection *conn,
evutil_gai_strerror (err));
rs_debug (("%s: event loop done\n", __func__));
- if ((pkt->flags & rs_packet_received_flag) == 0
+ if ((pkt->flags & RS_PACKET_RECEIVED) == 0
|| (req_msg
&& packet_verify_response (pkt->conn, pkt, req_msg) != RSE_OK))
{