mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 07:08:19 +00:00
Moving uid from conn_id to connection, and making output determistic
if a hash seed is given.
This commit is contained in:
parent
881071cc99
commit
d84d4b8a57
6 changed files with 38 additions and 20 deletions
|
@ -352,7 +352,7 @@ char* uitoa_n(uint64 value, char* str, int n, int base)
|
|||
|
||||
do {
|
||||
str[i++] = dig[v % base];
|
||||
v /= base;
|
||||
v /= base;
|
||||
} while ( v && i < n );
|
||||
|
||||
str[i] = '\0';
|
||||
|
@ -798,7 +798,7 @@ const char* bro_path()
|
|||
if ( ! path )
|
||||
path = ".:"
|
||||
POLICYDEST ":"
|
||||
POLICYDEST "/sigs:"
|
||||
POLICYDEST "/sigs:"
|
||||
POLICYDEST "/time-machine:"
|
||||
POLICYDEST "/site";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue