@ -3033,7 +3033,7 @@ DEFHEADING(Character device options:)
DEF ( " c h a r d e v " , HAS_ARG , QEMU_OPTION_chardev ,
" - c h a r d e v h e l p \n "
" - c h a r d e v n u l l , i d = i d [ , m u x = o n | o f f ] [ , l o g f i l e = P A T H ] [ , l o g a p p e n d = o n | o f f ] \n "
" - c h a r d e v s o c k e t , i d = i d [ , h o s t = h o s t ] , p o r t = p o r t [ , t o = t o ] [ , i p v 4 = o n | o f f ] [ , i p v 6 = o n | o f f ] [ , d e l a y = o n | o f f ] [ , r e c o n n e c t = s e c o n d s ] \n "
" - c h a r d e v s o c k e t , i d = i d [ , h o s t = h o s t ] , p o r t = p o r t [ , t o = t o ] [ , i p v 4 = o n | o f f ] [ , i p v 6 = o n | o f f ] [ , n o de l a y = o n | o f f ] [ , r e c o n n e c t = s e c o n d s ] \n "
" [ , s e r v e r = o n | o f f ] [ , w a i t = o n | o f f ] [ , t e l n e t = o n | o f f ] [ , w e b s o c k e t = o n | o f f ] [ , r e c o n n e c t = s e c o n d s ] [ , m u x = o n | o f f ] \n "
" [ , l o g f i l e = P A T H ] [ , l o g a p p e n d = o n | o f f ] [ , t l s - c r e d s = I D ] [ , t l s - a u t h z = I D ] ( t c p ) \n "
" - c h a r d e v s o c k e t , i d = i d , p a t h = p a t h [ , s e r v e r = o n | o f f ] [ , w a i t = o n | o f f ] [ , t e l n e t = o n | o f f ] [ , w e b s o c k e t = o n | o f f ] [ , r e c o n n e c t = s e c o n d s ] \n "
@ -3184,7 +3184,7 @@ The available backends are:
TCP and unix socket options are given below :
` ` TCP options : port = port [ , host = host ] [ , to = to ] [ , ipv4 = on | off ] [ , ipv6 = on | off ] [ , delay = on | off ] ` `
` ` TCP options : port = port [ , host = host ] [ , to = to ] [ , ipv4 = on | off ] [ , ipv6 = on | off ] [ , no delay= on | off ] ` `
` ` host ` ` for a l i s t e n i n g s o c k e t s p e c i f i e s t h e l o c a l a d d r e s s t o
be bound . For a connecting socket species the remote host to
connect to . ` ` host ` ` is optional for l i s t e n i n g s o c k e t s . I f n o t
@ -3204,7 +3204,7 @@ The available backends are:
or IPv6 must be used . If neither is specified the socket may
use either protocol .
` ` delay = on | off ` ` disables the Nagle algorithm .
` ` no delay= on | off ` ` disables the Nagle algorithm .
` ` unix options : path = path [ , a bstract = on | off ] [ , tight = on | off ] ` `
` ` path ` ` specifies the local path of the unix socket . ` ` path ` `
@ -3593,13 +3593,13 @@ SRST
` ` telnet options : ` `
localhost 5555
` ` tcp : [ host ] : port [ , server = on | off ] [ , wait = on | off ] [ , delay = on | off ] [ , reconnect = seconds ] ` `
` ` tcp : [ host ] : port [ , server = on | off ] [ , wait = on | off ] [ , no delay= on | off ] [ , reconnect = seconds ] ` `
The TCP Net Console has two modes of operation . It can send the
serial I / O to a location or wait for a c o n n e c t i o n f r o m a
location . By d efault the TCP Net Console is sent to host at the
port . If you use the ` ` server = on ` ` option QEMU will wait for a c l i e n t
socket application to connect to the port before continuing ,
unless the ` ` wait = on | off ` ` option was specified . The ` ` delay = on | off ` `
unless the ` ` wait = on | off ` ` option was specified . The ` ` no delay= on | off ` `
option disables the Nagle buffering algorithm . The ` ` reconnect = on ` `
option only applies if ` ` s e r v e r = n o ` ` i s s e t , i f t h e c o n n e c t i o n g o e s
down it will attempt to reconnect at the given interval . If host
@ -3616,7 +3616,7 @@ SRST
` ` Example to not wait and listen on ip 192.168 .0 .100 port 4444 ` `
- serial tcp : 192.168 .0 .100 : 4444 , server = on , wait = off
` ` telnet : host : port [ , server = on | off ] [ , wait = on | off ] [ , delay = on | off ] ` `
` ` telnet : host : port [ , server = on | off ] [ , wait = on | off ] [ , no delay= on | off ] ` `
The telnet protocol is used instead of raw tcp sockets . The
options work the same as if y o u h a d s p e c i f i e d ` ` - s e r i a l t c p ` ` .
The difference is that the port acts like a telnet server or
@ -3626,7 +3626,7 @@ SRST
you do it w i t h C o n t r o l - ] a n d t h e n t y p e " s e n d b r e a k " f o l l o w e d b y
pressing the enter key .
` ` websocket : host : port , server = on [ , wait = on | off ] [ , delay = on | off ] ` `
` ` websocket : host : port , server = on [ , wait = on | off ] [ , no delay= on | off ] ` `
The WebSocket protocol is used instead of raw tcp socket . The
port acts as a WebSocket server . Client mode is not supported .