diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2019-03-27 23:18:25 +0100 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2021-11-06 00:07:40 +0100 |
commit | 19e1f5c71120e1a02aa3eae3096e787de2513490 (patch) | |
tree | ba9cb8cf9505f242d9852d772d4bc80f60bd3470 /sysdep/unix/unix.h | |
parent | 9f24fef5e91fb4df301242ede91ee7ac1b46b8a8 (diff) |
Unix: Implement sk_connect_unix
Support abstract socket in sk_unix_connect
Implement SK_UNIX_ACTIVE
Diffstat (limited to 'sysdep/unix/unix.h')
-rw-r--r-- | sysdep/unix/unix.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdep/unix/unix.h b/sysdep/unix/unix.h index ad85d1ea..6fa8df6e 100644 --- a/sysdep/unix/unix.h +++ b/sysdep/unix/unix.h @@ -109,6 +109,7 @@ void io_loop(void); void io_log_dump(void); int sk_open_unix(struct birdsock *s, char *name); struct rfile *rf_open(struct pool *, const char *name, const char *mode); +int sk_connect_unix(struct birdsock *s, char *name, socklen_t namelen); void *rf_file(struct rfile *f); int rf_fileno(struct rfile *f); void test_old_bird(char *path); |