diff options
Diffstat (limited to 'src/socket.h')
-rw-r--r-- | src/socket.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/socket.h b/src/socket.h index b83c34cf61..01ea48d62f 100644 --- a/src/socket.h +++ b/src/socket.h @@ -59,6 +59,7 @@ typedef enum SocketType { SOCKET_SOCKET, SOCKET_FIFO, SOCKET_SPECIAL, + SOCKET_MQUEUE, _SOCKET_FIFO_MAX, _SOCKET_FIFO_INVALID = -1 } SocketType; @@ -124,6 +125,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 */ |