diff options
author | Lingjiang Fang <vacingfang@foxmail.com> | 2021-01-02 19:37:34 +0800 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2021-01-09 17:08:27 +0100 |
commit | c4407a3e00033c7dd2260a3203fd5a5f104737b9 (patch) | |
tree | 807695f8091a3cb149a9ac035d3bdf3d4aa471e9 | |
parent | 7a2d94cf1ade02829b36f9ebc8d6bb2e6e126343 (diff) | |
download | ffmpeg-c4407a3e00033c7dd2260a3203fd5a5f104737b9.tar.gz |
doc/protocols: explain tcp listen option description
Signed-off-by: Marton Balint <cus@passwd.hu>
-rw-r--r-- | doc/protocols.texi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/protocols.texi b/doc/protocols.texi index af887761e9..c0b511b7a4 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -1652,8 +1652,9 @@ tcp://@var{hostname}:@var{port}[?@var{options}] The list of supported options follows. @table @option -@item listen=@var{1|0} -Listen for an incoming connection. Default value is 0. +@item listen=@var{2|1|0} +Listen for an incoming connection. 0 disables listen, 1 enables listen in +single client mode, 2 enables listen in multi-client mode. Default value is 0. @item timeout=@var{microseconds} Set raise error timeout, expressed in microseconds. |