mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Improve documentation about tcp_port
Apparently it's not entirely clear that it's not needed in clients. v2, as provided by @nurupo
This commit is contained in:
parent
67df1ab7ce
commit
4ffd5584f9
@ -431,7 +431,15 @@ static class options {
|
|||||||
uint16_t end_port;
|
uint16_t end_port;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The port to use for the TCP server. If 0, the tcp server is disabled.
|
* The port to use for the TCP server (relay). If 0, the TCP server is
|
||||||
|
* disabled.
|
||||||
|
*
|
||||||
|
* Enabling it is not required for Tox to function properly.
|
||||||
|
*
|
||||||
|
* When enabled, your Tox instance can act as a TCP relay for other Tox
|
||||||
|
* instance. This leads to increased traffic, thus when writing a client
|
||||||
|
* it is recommended to enable TCP server only if the user has an option
|
||||||
|
* to disable it.
|
||||||
*/
|
*/
|
||||||
uint16_t tcp_port;
|
uint16_t tcp_port;
|
||||||
|
|
||||||
|
@ -451,7 +451,15 @@ struct Tox_Options {
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The port to use for the TCP server. If 0, the tcp server is disabled.
|
* The port to use for the TCP server (relay). If 0, the TCP server is
|
||||||
|
* disabled.
|
||||||
|
*
|
||||||
|
* Enabling it is not required for Tox to function normally.
|
||||||
|
*
|
||||||
|
* When enabled, your Tox instance can act as a TCP relay for other Tox
|
||||||
|
* instance. This leads to increased traffic, thus when writing a client
|
||||||
|
* it is recommended to enable TCP server only if the user has an option
|
||||||
|
* to disable it.
|
||||||
*/
|
*/
|
||||||
uint16_t tcp_port;
|
uint16_t tcp_port;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user