]> git.ipfire.org Git - thirdparty/git.git/blame - unix-socket.h
t7510: add a test case that does not need gpg
[thirdparty/git.git] / unix-socket.h
CommitLineData
e2770979
JK
1#ifndef UNIX_SOCKET_H
2#define UNIX_SOCKET_H
3
55144ccb
JH
4struct unix_stream_listen_opts {
5 int listen_backlog_size;
77e522ca 6 unsigned int disallow_chdir:1;
55144ccb
JH
7};
8
9#define UNIX_STREAM_LISTEN_OPTS_INIT { 0 }
10
77e522ca 11int unix_stream_connect(const char *path, int disallow_chdir);
55144ccb
JH
12int unix_stream_listen(const char *path,
13 const struct unix_stream_listen_opts *opts);
e2770979
JK
14
15#endif /* UNIX_SOCKET_H */