mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Add missing record field comments
This commit is contained in:
parent
6a059a1cf7
commit
8d0087154a
4 changed files with 14 additions and 7 deletions
4
CHANGES
4
CHANGES
|
@ -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)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
2.6-beta2-49
|
||||
2.6-beta2-50
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue