You've already forked Http_Cyclone
mirror of
https://github.com/AdaCore/Http_Cyclone.git
synced 2026-02-12 13:07:39 -08:00
17 lines
365 B
Modula-2
17 lines
365 B
Modula-2
-- Number of sockets that can be opened simultaneously
|
|
SOCKET_MAX_COUNT := 10
|
|
|
|
-- Default buffer size for reception
|
|
TCP_DEFAULT_RX_BUFFER_SIZE := 2860
|
|
|
|
-- Default buffer size for transmission
|
|
TCP_DEFAULT_TX_BUFFER_SIZE := 2860
|
|
|
|
-- Default SYN queue size for listening sockets
|
|
TCP_DEFAULT_SYN_QUEUE_SIZE := 4
|
|
|
|
-- UDP support
|
|
UDP_SUPPORT := True
|
|
|
|
TCP_SUPPORT := True
|