2022-06-08 03:50:56 -04:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2022-10-05 09:20:39 -04:00
|
|
|
config EXAMPLE_TARGET_ADDR
|
|
|
|
string "Target server Address"
|
2022-06-08 03:50:56 -04:00
|
|
|
default "192.168.0.165"
|
|
|
|
help
|
|
|
|
The example will connect to this IPV4 address.
|
|
|
|
|
2022-10-05 09:20:39 -04:00
|
|
|
config EXAMPLE_TARGET_PORT
|
|
|
|
int "Target server Port"
|
2022-06-08 03:50:56 -04:00
|
|
|
range 0 65535
|
2022-10-05 09:20:39 -04:00
|
|
|
default 8080
|
2022-06-08 03:50:56 -04:00
|
|
|
help
|
|
|
|
The remote port to which the client example will connect to.
|
|
|
|
|
2022-10-05 09:20:39 -04:00
|
|
|
config EXAMPLE_ENABLE_PROXY
|
|
|
|
bool "Enable Proxy client"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Use a SOCKS proxy to connect
|
|
|
|
|
|
|
|
config EXAMPLE_PROXY_ADDR
|
|
|
|
string "Proxy server Address"
|
|
|
|
depends on ENABLE_PROXY
|
|
|
|
default "192.168.0.1"
|
|
|
|
help
|
|
|
|
The example will connect to this proxy address to request connection to target.
|
|
|
|
|
|
|
|
config EXAMPLE_PROXY_PORT
|
|
|
|
int "Proxy server Port"
|
|
|
|
depends on ENABLE_PROXY
|
|
|
|
range 0 65535
|
|
|
|
default 1080
|
|
|
|
help
|
|
|
|
The proxy port to which the client example will request connection.
|
|
|
|
|
2022-06-08 03:50:56 -04:00
|
|
|
endmenu
|