make DoDescribe protected for a tidier interface

mark use of DESC_PORTABLE as deprecated
This commit is contained in:
Vern Paxson 2022-05-03 13:41:39 -07:00
parent cbb18207dc
commit d75d1715a9
2 changed files with 22 additions and 10 deletions

View file

@ -22,6 +22,10 @@ namespace zeek
ODesc::ODesc(DescType t, File* arg_f)
{
if ( t == DESC_PORTABLE )
zeek::reporter->Warning(
"use of DESC_PORTABLE \"Describe\" format is deprecated with Zeek 5.0");
type = t;
style = STANDARD_STYLE;
f = arg_f;