Revision 478a426f14b92cef92fc09df442b356a53f6fa8f authored by Taylor Blau on 06 October 2022, 21:42:55 UTC, committed by Taylor Blau on 06 October 2022, 21:42:55 UTC
Signed-off-by: Taylor Blau <me@ttaylorr.com>
2 parent s f2eed22 + 7800e1d
Raw File
unix-socket.h
#ifndef UNIX_SOCKET_H
#define UNIX_SOCKET_H

struct unix_stream_listen_opts {
	int listen_backlog_size;
	unsigned int disallow_chdir:1;
};

#define UNIX_STREAM_LISTEN_OPTS_INIT { 0 }

int unix_stream_connect(const char *path, int disallow_chdir);
int unix_stream_listen(const char *path,
		       const struct unix_stream_listen_opts *opts);

#endif /* UNIX_SOCKET_H */
back to top