chiark / gitweb /
journal: if two entries match with everything but seqnums, they are still identical
[elogind.git] / src / socket.h
index 9dd9f55fde5895bba161bd23faf69cceb4f05414..fd13ac4e4c8e035033523f9b6bb64a085d7a813a 100644 (file)
@@ -58,6 +58,8 @@ typedef enum SocketExecCommand {
 typedef enum SocketType {
         SOCKET_SOCKET,
         SOCKET_FIFO,
+        SOCKET_SPECIAL,
+        SOCKET_MQUEUE,
         _SOCKET_FIFO_MAX,
         _SOCKET_FIFO_INVALID = -1
 } SocketType;
@@ -114,6 +116,8 @@ struct Socket {
         /* Socket options */
         bool keep_alive;
         bool free_bind;
+        bool transparent;
+        bool broadcast;
         int priority;
         int mark;
         size_t receive_buffer;
@@ -123,6 +127,8 @@ struct Socket {
         size_t pipe_size;
         char *bind_to_device;
         char *tcp_congestion;
+        long mq_maxmsg;
+        long mq_msgsize;
 };
 
 /* Called from the service code when collecting fds */