Trying a different method of record parsing for SSL analyzer.

This commit is contained in:
Seth Hall 2011-06-30 17:04:32 -04:00
parent 00065c88dd
commit 5382456f12

View file

@ -679,7 +679,7 @@ type CiphertextRecord(rec: SSLRecord, is_orig: bool) = record {
###################################################################### ######################################################################
type SSLPDU(is_orig: bool) = record { type SSLPDU(is_orig: bool) = record {
records : SSLRecord(is_orig)[] &until($element == 0); records : SSLRecord(is_orig)[] &until($input.length() == 0);
} &byteorder = bigendian; } &byteorder = bigendian;