summaryrefslogtreecommitdiff
path: root/code/core/rbuf.c
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2017-08-12 23:09:10 +0200
committerUros Majstorovic <majstor@majstor.org>2017-08-12 23:09:10 +0200
commit770fc69429e6b61ca648b15816fd003819abe3e2 (patch)
tree389d80d2de0afd5851801cf3246f949edda0d49e /code/core/rbuf.c
parent83aa3fed513e26e0457c6744cb110aa420d2831a (diff)
conn_close handler added
Diffstat (limited to 'code/core/rbuf.c')
-rw-r--r--code/core/rbuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/core/rbuf.c b/code/core/rbuf.c
index bb110b9..d92c3f1 100644
--- a/code/core/rbuf.c
+++ b/code/core/rbuf.c
@@ -51,7 +51,7 @@ int ecp_conn_rbuf_start(ECPConnection *conn, ecp_seq_t seq) {
return ECP_OK;
}
-ssize_t ecp_conn_rbuf_pkt_send(struct ECPConnection *conn, ECPNetAddr *addr, unsigned char *packet, size_t pkt_size, ecp_seq_t seq, int idx) {
+ssize_t ecp_conn_rbuf_pkt_send(ECPConnection *conn, ECPNetAddr *addr, unsigned char *packet, size_t pkt_size, ecp_seq_t seq, int idx) {
int do_send;
ECPRBSend *buf = conn->rbuf.send;