diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in
index f7f45bf8383afada8249a06eec1d8b51fcdfb699..f1fb8e59cc4ff749552d892a816417c248e4389d 100644
--- a/docs/formatdomain.html.in
+++ b/docs/formatdomain.html.in
@@ -5900,7 +5900,9 @@ qemu-kvm -net nic,model=? /dev/null
</interface>
<interface type='vhostuser'>
<mac address='52:54:00:3b:83:1b'/>
- <source type='unix' path='/tmp/vhost2.sock' mode='client'/>
+ <source type='unix' path='/tmp/vhost2.sock' mode='client'>
+ <reconnect enabled='yes' timeout='10'/>
+ </source>
<model type='virtio'/>
<driver queues='5'/>
</interface>
@@ -5916,6 +5918,13 @@ qemu-kvm -net nic,model=? /dev/null
are supported.
vhost-user requires the virtio model type, thus the
<model>
element is mandatory.
+ Since 4.1.0 the element has an
+ optional child element reconnect
which
+ configures reconnect timeout if the connection is lost. It
+ has two attributes enabled
(which accepts
+ yes
and no
) and
+ timeout
which specifies the amount of seconds
+ after which hypervisor tries to reconnect.