mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00

This allows all threads accessing the same database to share sqlite objects. This, for example, fixes the issue with several threads simultaneously writing to the same database file. See https://www.sqlite.org/sharedcache.html Addresses BIT-1325
16 lines
366 B
Text
16 lines
366 B
Text
1|-42|SSH::LOG|21|123|10.0.0.0/24|1.2.3.4|3.14|1469128060.6589|100.0|hurz|2,4,1,3|BB,AA,CC|(empty)|10,20,30|(empty)|SSH::foo
|
|
{
|
|
if (0 < SSH::i)
|
|
return (Foo);
|
|
else
|
|
return (Bar);
|
|
|
|
}
|
|
1|-42|SSH::LOG|21|123|10.0.0.0/24|1.2.3.4|3.14|1469128060.6589|100.0|hurz|2,4,1,3|BB,AA,CC|(empty)|10,20,30|(empty)|SSH::foo
|
|
{
|
|
if (0 < SSH::i)
|
|
return (Foo);
|
|
else
|
|
return (Bar);
|
|
|
|
}
|