mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 16:48:19 +00:00
Compile Zeek with MSVC
Allow Zeek to be embedded in another project
This commit is contained in:
parent
2bd4af7477
commit
3a80b79497
53 changed files with 724 additions and 153 deletions
|
@ -3,7 +3,7 @@
|
|||
module FileExtract;
|
||||
|
||||
%%{
|
||||
#include "zeek/zeek/file_analysis/Manager.h"
|
||||
#include "zeek/file_analysis/Manager.h"
|
||||
|
||||
#include "zeek/file_analysis/file_analysis.bif.h"
|
||||
%%}
|
||||
|
|
|
@ -279,7 +279,7 @@ void X509Common::ParseExtension(X509_EXTENSION* ex, const EventHandlerPtr& h, bo
|
|||
auto pX509Ext = make_intrusive<RecordVal>(BifType::Record::X509::Extension);
|
||||
pX509Ext->Assign(0, name);
|
||||
|
||||
if ( short_name and strlen(short_name) > 0 )
|
||||
if ( short_name && strlen(short_name) > 0 )
|
||||
pX509Ext->Assign(1, short_name);
|
||||
|
||||
pX509Ext->Assign(2, oid);
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
../../../analyzer/protocol/ssl/tls-handshake-signed_certificate_timestamp.pac
|
|
@ -0,0 +1 @@
|
|||
%include ../../../analyzer/protocol/ssl/tls-handshake-signed_certificate_timestamp.pac
|
Loading…
Add table
Add a link
Reference in a new issue