diff options
author | Martin Mares <mj@ucw.cz> | 1999-10-29 14:09:29 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-10-29 14:09:29 +0200 |
commit | b93abffae4ad5767625b35c9a09513e9d27a5256 (patch) | |
tree | bf3b6a2427d1d79619c98d6e82d97a111ae5aad4 /lib/socket.h | |
parent | 0d70292d88276a9883ab8bc15b00e6a2e2fe4487 (diff) | |
download | bird-b93abffae4ad5767625b35c9a09513e9d27a5256.tar bird-b93abffae4ad5767625b35c9a09513e9d27a5256.zip |
Implemented unix-domain sockets.
Diffstat (limited to 'lib/socket.h')
-rw-r--r-- | lib/socket.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/socket.h b/lib/socket.h index e6229f7..65ba9a2 100644 --- a/lib/socket.h +++ b/lib/socket.h @@ -64,6 +64,9 @@ sk_send_buffer_empty(sock *sk) #define SK_IP 5 /* ? - - * - ? ? */ #define SK_IP_MC 6 /* ? - * * * * - */ #define SK_MAGIC 7 /* Internal use by sysdep code */ +#define SK_UNIX_PASSIVE 8 +#define SK_UNIX 9 +#define SK_DELETED 10 /* Set to this if you want to delete socket from err_hook */ /* * Multicast sockets are slightly different from the other ones: |