@@ -3033,7 +3033,7 @@ DEFHEADING(Character device options:)
3033
3033
DEF(" chardev " , HAS_ARG, QEMU_OPTION_chardev,
3034
3034
" -chardev help \n "
3035
3035
" -chardev null ,id = id [,mux = on | off ][,logfile = PATH ][,logappend = on | off ]\n "
3036
- " -chardev socket ,id = id [,host = host ],port = port [,to = to ][,ipv4 = on | off ][,ipv6 = on | off ][,delay = on | off ][,reconnect = seconds ]\n "
3036
+ " -chardev socket ,id = id [,host = host ],port = port [,to = to ][,ipv4 = on | off ][,ipv6 = on | off ][,nodelay = on | off ][,reconnect = seconds ]\n "
3037
3037
" [,server = on | off ][,wait = on | off ][,telnet = on | off ][,websocket = on | off ][,reconnect = seconds ][,mux = on | off ]\n "
3038
3038
" [,logfile = PATH ][,logappend = on | off ][,tls - creds = ID ][,tls - authz = ID ] (tcp )\n "
3039
3039
" -chardev socket ,id = id ,path = path [,server = on | off ][,wait = on | off ][,telnet = on | off ][,websocket = on | off ][,reconnect = seconds ]\n "
@@ -3184,7 +3184,7 @@ The available backends are:
3184
3184
3185
3185
TCP and unix socket options are given below:
3186
3186
3187
- ``TCP options: port=port[,host=host][,to=to][,ipv4=on|off][,ipv6=on|off][,delay =on|off]``
3187
+ ``TCP options: port=port[,host=host][,to=to][,ipv4=on|off][,ipv6=on|off][,nodelay =on|off]``
3188
3188
``host`` for a listening socket specifies the local address to
3189
3189
be bound. For a connecting socket species the remote host to
3190
3190
connect to. ``host`` is optional for listening sockets. If not
@@ -3204,7 +3204,7 @@ The available backends are:
3204
3204
or IPv6 must be used. If neither is specified the socket may
3205
3205
use either protocol.
3206
3206
3207
- ``delay =on|off`` disables the Nagle algorithm.
3207
+ ``nodelay =on|off`` disables the Nagle algorithm.
3208
3208
3209
3209
``unix options: path=path[,abstract=on|off][,tight=on|off]``
3210
3210
``path`` specifies the local path of the unix socket. ``path``
@@ -3593,13 +3593,13 @@ SRST
3593
3593
``telnet options:``
3594
3594
localhost 5555
3595
3595
3596
- ``tcp:[host]:port[,server=on|off][,wait=on|off][,delay =on|off][,reconnect=seconds]``
3596
+ ``tcp:[host]:port[,server=on|off][,wait=on|off][,nodelay =on|off][,reconnect=seconds]``
3597
3597
The TCP Net Console has two modes of operation. It can send the
3598
3598
serial I/O to a location or wait for a connection from a
3599
3599
location. By default the TCP Net Console is sent to host at the
3600
3600
port. If you use the ``server=on`` option QEMU will wait for a client
3601
3601
socket application to connect to the port before continuing,
3602
- unless the ``wait=on|off`` option was specified. The ``delay =on|off``
3602
+ unless the ``wait=on|off`` option was specified. The ``nodelay =on|off``
3603
3603
option disables the Nagle buffering algorithm. The ``reconnect=on``
3604
3604
option only applies if ``server=no`` is set, if the connection goes
3605
3605
down it will attempt to reconnect at the given interval. If host
@@ -3616,7 +3616,7 @@ SRST
3616
3616
``Example to not wait and listen on ip 192.168.0.100 port 4444``
3617
3617
-serial tcp:192.168.0.100:4444,server=on,wait=off
3618
3618
3619
- ``telnet:host:port[,server=on|off][,wait=on|off][,delay =on|off]``
3619
+ ``telnet:host:port[,server=on|off][,wait=on|off][,nodelay =on|off]``
3620
3620
The telnet protocol is used instead of raw tcp sockets. The
3621
3621
options work the same as if you had specified ``-serial tcp``.
3622
3622
The difference is that the port acts like a telnet server or
@@ -3626,7 +3626,7 @@ SRST
3626
3626
you do it with Control-] and then type "send break" followed by
3627
3627
pressing the enter key.
3628
3628
3629
- ``websocket:host:port,server=on[,wait=on|off][,delay =on|off]``
3629
+ ``websocket:host:port,server=on[,wait=on|off][,nodelay =on|off]``
3630
3630
The WebSocket protocol is used instead of raw tcp socket. The
3631
3631
port acts as a WebSocket server. Client mode is not supported.
3632
3632
0 commit comments