ovn-sb: Fix "ip.ttl--" lower limit description.
authorJustin Pettit <jpettit@nicira.com>
Wed, 21 Oct 2015 05:11:10 +0000 (22:11 -0700)
committerJustin Pettit <jpettit@ovn.org>
Mon, 9 Nov 2015 23:01:12 +0000 (15:01 -0800)
To decrement the IP TTL, the existing TTL can't be less than two.  The
field is not bit-maskable, though, so "ip.ttl < 2" will not work.

Signed-off-by: Justin Pettit <jpettit@nicira.com>
Acked-by: Russell Bryant <rbryant@redhat.com>
ovn/ovn-sb.xml

index 9c2d411..e674f3a 100644 (file)
             Decrements the IPv4 or IPv6 TTL.  If this would make the TTL zero
             or negative, then processing of the packet halts; no further
             actions are processed.  (To properly handle such cases, a
-            higher-priority flow should match on <code>ip.ttl &lt; 2</code>.)
+            higher-priority flow should match on
+            <code>ip.ttl == {0, 1};</code>.)
           </p>
 
           <p><b>Prerequisite:</b> <code>ip</code></p>