aboutsummaryrefslogtreecommitdiffstats
path: root/unix-socket.h
diff options
context:
space:
mode:
authorJeff Hostetler <jeffhost@microsoft.com>2021-03-15 21:08:25 +0000
committerJunio C Hamano <gitster@pobox.com>2021-03-15 14:32:51 -0700
commit55144ccb0ac48bd2db0b907a8e8123b2befe83d1 (patch)
tree26f202024706ff1ff2c6fcfa3a3dd82a11193250 /unix-socket.h
parentunix-socket: eliminate static unix_stream_socket() helper function (diff)
downloadgit-55144ccb0ac48bd2db0b907a8e8123b2befe83d1.tar.gz
git-55144ccb0ac48bd2db0b907a8e8123b2befe83d1.zip
unix-socket: add backlog size option to unix_stream_listen()
Update `unix_stream_listen()` to take an options structure to override default behaviors. This commit includes the size of the `listen()` backlog. Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'unix-socket.h')
-rw-r--r--unix-socket.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/unix-socket.h b/unix-socket.h
index e271aeec5a..ec2fb3ea72 100644
--- a/unix-socket.h
+++ b/unix-socket.h
@@ -1,7 +1,14 @@
#ifndef UNIX_SOCKET_H
#define UNIX_SOCKET_H
+struct unix_stream_listen_opts {
+ int listen_backlog_size;
+};
+
+#define UNIX_STREAM_LISTEN_OPTS_INIT { 0 }
+
int unix_stream_connect(const char *path);
-int unix_stream_listen(const char *path);
+int unix_stream_listen(const char *path,
+ const struct unix_stream_listen_opts *opts);
#endif /* UNIX_SOCKET_H */