1menu "TCP Transport"
2
3    menu "Websocket"
4        config WS_TRANSPORT
5            bool "Enable Websocket Transport"
6            default y
7            help
8                Enable support for creating websocket transport.
9
10        config WS_BUFFER_SIZE
11            int "Websocket transport buffer size"
12            default 1024
13            depends on WS_TRANSPORT
14            help
15                Size of the buffer used for constructing the HTTP Upgrade request during connect
16    endmenu
17
18endmenu
19