4 struct unix_stream_listen_opts
{
5 int listen_backlog_size
;
6 unsigned int disallow_chdir
:1;
9 #define UNIX_STREAM_LISTEN_OPTS_INIT { 0 }
11 int unix_stream_connect(const char *path
, int disallow_chdir
);
12 int unix_stream_listen(const char *path
,
13 const struct unix_stream_listen_opts
*opts
);
15 #endif /* UNIX_SOCKET_H */