Adding some comments about data types to remove from bro.init.

This commit is contained in:
Seth Hall 2011-04-21 14:26:20 -04:00
parent 8b363e934a
commit 561bfb0361

View file

@ -1015,6 +1015,8 @@ type signature_state: record {
};
# This type is no longer used
# TODO: remove any use of this from the core.
type software_version: record {
major: int; # Major version number
minor: int; # Minor version number
@ -1022,6 +1024,8 @@ type software_version: record {
addl: string; # Additional version string (e.g. "beta42")
};
# This type is no longer used
# TODO: remove any use of this from the core.
type software: record {
name: string; # Unique name of a software, e.g., "OS"
version: software_version;