mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 01:28:20 +00:00
OCSP: rewrite events and data structures.
Instead of having a big event, that tries to parse all the data into a huge datastructure, we do the more common thing and use a series of smaller events to parse requests and responses. The new events are: ocsp_request -> raised for an ocsp request, giving version and requestor ocsp_request_certificate -> raised n times per request, once per cert ocsp_response_status -> raised for each ocsp response, giving status ocsp_response_bytes -> raised for each ocsp response with information ocsp_response_certificate -> raised for each cert in an ocsp response
This commit is contained in:
parent
9c6cebf324
commit
e1bcc4509f
12 changed files with 90 additions and 277 deletions
|
@ -628,7 +628,6 @@ extern OpaqueType* cardinality_type;
|
|||
extern OpaqueType* topk_type;
|
||||
extern OpaqueType* bloomfilter_type;
|
||||
extern OpaqueType* x509_opaque_type;
|
||||
extern OpaqueType* ocsp_req_opaque_type;
|
||||
extern OpaqueType* ocsp_resp_opaque_type;
|
||||
|
||||
// Returns the Bro basic (non-parameterized) type with the given type.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue