* Markus Armbruster (arm...@redhat.com) wrote: > "Dr. David Alan Gilbert (git)" <dgilb...@redhat.com> writes: > > > From: "Dr. David Alan Gilbert" <dgilb...@redhat.com> > > > > Allow the caller to restrict the set of interfaces that announces are > > sent on. The default is still to send on all interfaces. > > > > e.g. > > > > { "execute": "announce-self", "arguments": { "initial": 50, "max": 550, > > "rounds": 5, "step": 50, "ifaces": ["vn2","vn1"] } } > > > > Note: There's still only one timer for the qmp command, so that > > performing an 'announce-self' on one list of interfaces followed > > by another 'announce-self' on another list will stop the announces > > on the existing set. > > > > Signed-off-by: Dr. David Alan Gilbert <dgilb...@redhat.com> > [...] > > diff --git a/qapi/net.json b/qapi/net.json > > index 5f7bff1637..871cfa7405 100644 > > --- a/qapi/net.json > > +++ b/qapi/net.json > > @@ -706,7 +706,8 @@ > > 'data': { 'initial': 'int', > > 'max': 'int', > > 'rounds': 'int', > > - 'step': 'int' } } > > + 'step': 'int', > > + '*ifaces': ['str'] } } > > QMP traditionally eschews abbreviations like "iface".
OK, renamed 'interfaces' Dave > > > > ## > > # @announce-self: > > @@ -718,9 +719,10 @@ > > # > > # Example: > > # > > -# -> { "execute": "announce-self" > > +# -> { "execute": "announce-self", > > # "arguments": { > > -# "initial": 50, "max": 550, "rounds": 10, "step": 50 } } > > +# "initial": 50, "max": 550, "rounds": 10, "step": 50, > > +# "ifaces": ["vn2","vn3"] } } > > # <- { "return": {} } > > # > > # Since: 4.0 -- Dr. David Alan Gilbert / dgilb...@redhat.com / Manchester, UK