mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 20:18:20 +00:00
Changing the HTTP's analyzers internals to use 64-bit integers.
(Gregor Maier). This is the patch from #326, plus some cleanup.
This commit is contained in:
parent
80376653c2
commit
714289bd13
13 changed files with 56 additions and 62 deletions
|
@ -735,7 +735,7 @@ int BroFile::Write(const char* data, int len)
|
|||
while ( len )
|
||||
{
|
||||
int outl;
|
||||
int inl = min(MIN_BUFFER_SIZE, len);
|
||||
int inl = min(+MIN_BUFFER_SIZE, len);
|
||||
|
||||
if ( ! EVP_SealUpdate(cipher_ctx, cipher_buffer, &outl,
|
||||
(unsigned char*)data, inl) )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue