| 1 | #ifndef UNIX_SOCKET_H |
| 2 | #define UNIX_SOCKET_H |
| 3 | |
| 4 | struct unix_stream_listen_opts { |
| 5 | int listen_backlog_size; |
| 6 | unsigned int disallow_chdir:1; |
| 7 | }; |
| 8 | |
| 9 | #define UNIX_STREAM_LISTEN_OPTS_INIT { 0 } |
| 10 | |
| 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); |
| 14 | |
| 15 | #endif /* UNIX_SOCKET_H */ |