summaryrefslogtreecommitdiff
path: root/src/clients.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2010-11-28 23:24:16 +0000
committerChristian Pointner <equinox@spreadspace.org>2010-11-28 23:24:16 +0000
commit64ef9b77afabde7f0856d908489a5255107606ff (patch)
treea80035ed6f920e09f1c08762c831bd2479c83aba /src/clients.h
parentreplaced inet_ntop with getnameinfo (diff)
added length field to tcp_endpoint_t
git-svn-id: https://svn.spreadspace.org/tcpproxy/trunk@15 e61f0598-a718-4e21-a8f0-0aadfa62ad6b
Diffstat (limited to 'src/clients.h')
-rw-r--r--src/clients.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clients.h b/src/clients.h
index 8a78aa2..2515837 100644
--- a/src/clients.h
+++ b/src/clients.h
@@ -47,7 +47,7 @@ typedef slist_t clients_t;
int clients_init(clients_t* list);
void clients_clear(clients_t* list);
-int clients_add(clients_t* list, int fd, const tcp_endpoint_t* remote_end, const tcp_endpoint_t* source_end);
+int clients_add(clients_t* list, int fd, const tcp_endpoint_t remote_end, const tcp_endpoint_t source_end);
void clients_remove(clients_t* list, int fd);
client_t* clients_find(clients_t* list, int fd);
void clients_print(clients_t* list);