mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18:20 +00:00
DTLS working.
The only thing that is missing is a signature to detect the protocol (it has no well-known port). Reassembly is kind of fidgety - at the moment we only support re-assembling one simultaneous message per direction (which looking at our test-traffic might not be a problem). And I am not quite sure if I got all cases correct... But - it works :)
This commit is contained in:
parent
ba27bb54d4
commit
991e4f5dc3
14 changed files with 312 additions and 35 deletions
|
@ -30,12 +30,15 @@ void SSL_Analyzer::Done()
|
|||
|
||||
interp->FlowEOF(true);
|
||||
interp->FlowEOF(false);
|
||||
handshake_interp->FlowEOF(true);
|
||||
handshake_interp->FlowEOF(false);
|
||||
}
|
||||
|
||||
void SSL_Analyzer::EndpointEOF(bool is_orig)
|
||||
{
|
||||
tcp::TCP_ApplicationAnalyzer::EndpointEOF(is_orig);
|
||||
interp->FlowEOF(is_orig);
|
||||
handshake_interp->FlowEOF(is_orig);
|
||||
}
|
||||
|
||||
void SSL_Analyzer::DeliverStream(int len, const u_char* data, bool orig)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue