Add missing record field comments

This commit is contained in:
Jon Siwek 2018-10-26 10:23:57 -05:00
parent 6a059a1cf7
commit 8d0087154a
4 changed files with 14 additions and 7 deletions

View file

@ -1,4 +1,8 @@
2.6-beta2-50 | 2018-10-26 10:23:57 -0500
* Add missing record field comments (Jon Siwek, Corelight)
2.6-beta2-49 | 2018-10-25 18:56:02 -0500
* Fix minor documentation mistakes (Jon Siwek, Corelight)

View file

@ -1 +1 @@
2.6-beta2-49
2.6-beta2-50

View file

@ -7,18 +7,18 @@ module KRB;
export {
redef record Info += {
# Client certificate
## Client certificate
client_cert: Files::Info &optional;
# Subject of client certificate, if any
## Subject of client certificate, if any
client_cert_subject: string &log &optional;
# File unique ID of client cert, if any
## File unique ID of client cert, if any
client_cert_fuid: string &log &optional;
# Server certificate
## Server certificate
server_cert: Files::Info &optional;
# Subject of server certificate, if any
## Subject of server certificate, if any
server_cert_subject: string &log &optional;
# File unique ID of server cert, if any
## File unique ID of server cert, if any
server_cert_fuid: string &log &optional;
};

View file

@ -10,8 +10,11 @@ export {
redef enum Log::ID += { LOG };
type Info: record {
## Timestamp of the alert.
ts: time &log;
## Associated packet ID.
pid: PacketID &log;
## Associated alert data.
alert: AlertData &log;
};