Hello,<br><br>I&#39;m trying to use a table of sets in my policy, and can&#39;t figure out how to statically define values. The manual covers use of the add() function, but <br><br>Scan.bro<br>
<br>
global distinct_peers: table[addr] of set[addr]<br>
<br>
<br>
<br>
<br>
redef SMITH::table_of_sets = {<br>
 &nbsp; &nbsp; &nbsp; &nbsp;[ &quot;a&quot; ] = [ &quot;alpha&quot;, &quot;anchor&quot;, &quot;armor&quot; ],<br>
 &nbsp; &nbsp; &nbsp; &nbsp;[ &quot;b&quot; ] = [ &quot;bravo&quot;, &quot;biscuit&quot;, &quot;blue&quot; ],<br>
};<br>
<br>
<br>
smith.bro, line 150 (alpha, anchor, armor): bad tag in Val::CONVERTER<br>
(types/table)<br>
<br>
<br>
<br>
redef SMITH::table_of_sets = {<br>
 &nbsp; &nbsp; &nbsp; &nbsp;[ &quot;a&quot; ] = { &quot;alpha&quot;, &quot;anchor&quot;, &quot;armor&quot; },<br>
 &nbsp; &nbsp; &nbsp; &nbsp;[ &quot;b&quot; ] = { &quot;bravo&quot;, &quot;biscuit&quot;, &quot;blue&quot; },<br>
};<br>
<br>
smith.bro, line 149: error: syntax error, at or near &quot;{&quot;