Add very basic ocsp stapling support.

This only allows access to the ocsp stapling response data. No verification
or anything else at the moment.
This commit is contained in:
Bernhard Amann 2014-04-24 12:36:05 -07:00
parent 9b7eb293f1
commit c24629abf4
7 changed files with 41 additions and 2 deletions

View file

@ -341,6 +341,7 @@ type Certificate(rec: SSLRecord) = record {
type CertificateStatus(rec: SSLRecord) = record {
status_type: uint8; # 1 = ocsp, everything else is undefined
length : uint24;
response: bytestring &restofdata;
};