2020-06-30 04:55:27 -04:00
|
|
|
menu "TCP Transport"
|
|
|
|
|
2021-04-16 05:23:18 -04:00
|
|
|
menu "Websocket"
|
|
|
|
config WS_TRANSPORT
|
|
|
|
bool "Enable Websocket Transport"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Enable support for creating websocket transport.
|
|
|
|
|
|
|
|
config WS_BUFFER_SIZE
|
|
|
|
int "Websocket transport buffer size"
|
|
|
|
default 1024
|
|
|
|
depends on WS_TRANSPORT
|
|
|
|
help
|
|
|
|
Size of the buffer used for constructing the HTTP Upgrade request during connect
|
2022-05-16 03:27:32 -04:00
|
|
|
|
|
|
|
config WS_DYNAMIC_BUFFER
|
|
|
|
bool "Using dynamic websocket transport buffer"
|
|
|
|
default n
|
|
|
|
depends on WS_TRANSPORT
|
|
|
|
help
|
|
|
|
If enable this option, websocket transport buffer will be freed after connection
|
|
|
|
succeed to save more heap.
|
2021-04-16 05:23:18 -04:00
|
|
|
endmenu
|
2020-06-30 04:55:27 -04:00
|
|
|
|
|
|
|
endmenu
|