[ovs-dev] [PATCH 1/4] ovs-monitor-ipsec: Fix active connection regex

2020-12-16 Thread Mark Gray
Connections are added to IPsec using a connection name that is determined from the OVS port name and the tunnel type. GRE connections take the form: - Other connections take the form: -in- -out- The regex '|' operator parses strings left to right looking for the first match that it can find

Re: [ovs-dev] [PATCH 1/4] ovs-monitor-ipsec: Fix active connection regex

2020-12-23 Thread Eelco Chaudron
On 16 Dec 2020, at 13:04, Mark Gray wrote: > Connections are added to IPsec using a connection name > that is determined from the OVS port name and the tunnel > type. > > GRE connections take the form: > - > Other connections take the form: > -in- > -out- > > The regex '|' operator parses

Re: [ovs-dev] [PATCH 1/4] ovs-monitor-ipsec: Fix active connection regex

2020-12-23 Thread Flavio Leitner
On Wed, Dec 16, 2020 at 07:04:32AM -0500, Mark Gray wrote: > Connections are added to IPsec using a connection name > that is determined from the OVS port name and the tunnel > type. > > GRE connections take the form: > - > Other connections take the form: > -in- > -out- > > The regex '|' o