summaryrefslogtreecommitdiff
path: root/xs_socket.h
diff options
context:
space:
mode:
authorGravatar default2022-10-05 12:08:17 +0200
committerGravatar default2022-10-05 12:08:17 +0200
commit3e2cfa48d9e8881cbb3c1934eb33d5c419a76211 (patch)
tree44250c4866a38276887d11b7722f215a49fbb40b /xs_socket.h
parentUpdated documentation. (diff)
downloadsnac2-3e2cfa48d9e8881cbb3c1934eb33d5c419a76211.tar.gz
snac2-3e2cfa48d9e8881cbb3c1934eb33d5c419a76211.tar.xz
snac2-3e2cfa48d9e8881cbb3c1934eb33d5c419a76211.zip
Alert if _timeline_find_fn() finds more than one file.
Diffstat (limited to 'xs_socket.h')
-rw-r--r--xs_socket.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/xs_socket.h b/xs_socket.h
index c5eab80..e4a18ec 100644
--- a/xs_socket.h
+++ b/xs_socket.h
@@ -82,10 +82,10 @@ FILE *xs_socket_accept(int rs)
82/* accepts an incoming connection */ 82/* accepts an incoming connection */
83{ 83{
84 int cs = -1; 84 int cs = -1;
85 struct sockaddr_in host; 85 struct sockaddr_storage addr;
86 socklen_t l = sizeof(host); 86 socklen_t l = sizeof(addr);
87 87
88 cs = accept(rs, (struct sockaddr *)&host, &l); 88 cs = accept(rs, (struct sockaddr *)&addr, &l);
89 89
90 return cs == -1 ? NULL : fdopen(cs, "r+"); 90 return cs == -1 ? NULL : fdopen(cs, "r+");
91} 91}