Skip to content

Commit c606528

Browse files
committed
ipc: changed max sockets to 262k
1 parent 25f4b02 commit c606528

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/kernel/socket.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include <sys/types.h>
1515

1616
/* system-wide limit */
17-
#define MAX_SOCKETS (1 << 20) // little over a million
17+
#define MAX_SOCKETS (1 << 18) // 262k
1818

1919
/* socket family/domain - only Unix sockets will be implemented in the kernel */
2020
#define AF_UNIX 1

0 commit comments

Comments
 (0)