@@ -3033,7 +3033,7 @@ DEFHEADING(Character device options:)
30333033DEF(" chardev " , HAS_ARG, QEMU_OPTION_chardev,
30343034 " -chardev help \n "
30353035 " -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 "
30373037 " [,server = on | off ][,wait = on | off ][,telnet = on | off ][,websocket = on | off ][,reconnect = seconds ][,mux = on | off ]\n "
30383038 " [,logfile = PATH ][,logappend = on | off ][,tls - creds = ID ][,tls - authz = ID ] (tcp )\n "
30393039 " -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:
31843184
31853185 TCP and unix socket options are given below:
31863186
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]``
31883188 ``host`` for a listening socket specifies the local address to
31893189 be bound. For a connecting socket species the remote host to
31903190 connect to. ``host`` is optional for listening sockets. If not
@@ -3204,7 +3204,7 @@ The available backends are:
32043204 or IPv6 must be used. If neither is specified the socket may
32053205 use either protocol.
32063206
3207- ``delay =on|off`` disables the Nagle algorithm.
3207+ ``nodelay =on|off`` disables the Nagle algorithm.
32083208
32093209 ``unix options: path=path[,abstract=on|off][,tight=on|off]``
32103210 ``path`` specifies the local path of the unix socket. ``path``
@@ -3593,13 +3593,13 @@ SRST
35933593 ``telnet options:``
35943594 localhost 5555
35953595
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]``
35973597 The TCP Net Console has two modes of operation. It can send the
35983598 serial I/O to a location or wait for a connection from a
35993599 location. By default the TCP Net Console is sent to host at the
36003600 port. If you use the ``server=on`` option QEMU will wait for a client
36013601 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``
36033603 option disables the Nagle buffering algorithm. The ``reconnect=on``
36043604 option only applies if ``server=no`` is set, if the connection goes
36053605 down it will attempt to reconnect at the given interval. If host
@@ -3616,7 +3616,7 @@ SRST
36163616 ``Example to not wait and listen on ip 192.168.0.100 port 4444``
36173617 -serial tcp:192.168.0.100:4444,server=on,wait=off
36183618
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]``
36203620 The telnet protocol is used instead of raw tcp sockets. The
36213621 options work the same as if you had specified ``-serial tcp``.
36223622 The difference is that the port acts like a telnet server or
@@ -3626,7 +3626,7 @@ SRST
36263626 you do it with Control-] and then type "send break" followed by
36273627 pressing the enter key.
36283628
3629- ``websocket:host:port,server=on[,wait=on|off][,delay =on|off]``
3629+ ``websocket:host:port,server=on[,wait=on|off][,nodelay =on|off]``
36303630 The WebSocket protocol is used instead of raw tcp socket. The
36313631 port acts as a WebSocket server. Client mode is not supported.
36323632
0 commit comments