Adding upstream version 1:2.47.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
parent
fd5a0bafa2
commit
54102a2c29
4535 changed files with 1510258 additions and 0 deletions
15
unix-socket.h
Normal file
15
unix-socket.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#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 */
|
Loading…
Add table
Add a link
Reference in a new issue