<html>
    <head>
      <base href="https://bugzilla.netfilter.org/" />
    </head>
    <body><span class="vcard"><a class="email" href="mailto:pablo@netfilter.org" title="Pablo Neira Ayuso <pablo@netfilter.org>"> <span class="fn">Pablo Neira Ayuso</span></a>
</span> changed
              <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED WORKSFORME - [vmap] ct state concatenation not working"
   href="https://bugzilla.netfilter.org/show_bug.cgi?id=1465">bug 1465</a>
          <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">Resolution</td>
           <td>---
           </td>
           <td>WORKSFORME
           </td>
         </tr>

         <tr>
           <td style="text-align:right;">Status</td>
           <td>NEW
           </td>
           <td>RESOLVED
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED WORKSFORME - [vmap] ct state concatenation not working"
   href="https://bugzilla.netfilter.org/show_bug.cgi?id=1465#c1">Comment # 1</a>
              on <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED WORKSFORME - [vmap] ct state concatenation not working"
   href="https://bugzilla.netfilter.org/show_bug.cgi?id=1465">bug 1465</a>
              from <span class="vcard"><a class="email" href="mailto:pablo@netfilter.org" title="Pablo Neira Ayuso <pablo@netfilter.org>"> <span class="fn">Pablo Neira Ayuso</span></a>
</span></b>
        <pre>(In reply to vtolkm from <a href="show_bug.cgi?id=1465#c0">comment #0</a>)
<span class="quote">> kernel 5.9.0-rc6 armv7l | nft 0.9.6 

> works:

> ct state vmap { 1: drop, 2: accept, 4: accept }</span >

hm. this is hard to read, why not simply use the existing flag definitions?

ct state vmap { invalid: drop, established: accept, related: accept }

<span class="quote">> not working:

> ct state vmap { 1: drop, 2 . 4: accept }</span >

hm, this syntax is not correct. Why are you using a concatenation here?
Instead, you can combine flags via:

ct state vmap { invalid: drop, established,related: accept, related: accept }</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are watching all bug changes.</li>
      </ul>
    </body>
</html>