Moving uid from conn_id to connection, and making output determistic

if a hash seed is given.
This commit is contained in:
Robin Sommer 2011-03-16 14:25:49 -07:00
parent 881071cc99
commit d84d4b8a57
6 changed files with 38 additions and 20 deletions

View file

@ -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";