mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 02:58:20 +00:00
remove last remnants of autostart, which has been removed for quite a while.
This commit is contained in:
parent
976d8f7ba7
commit
2e452dc29f
3 changed files with 0 additions and 8 deletions
|
@ -24,9 +24,6 @@ export {
|
|||
## Read mode to use for this stream
|
||||
mode: Mode &default=default_mode;
|
||||
|
||||
## Automatically start the input stream after the first filter has been added
|
||||
autostart: bool &default=T;
|
||||
|
||||
## Descriptive name. Used to remove a filter at a later time
|
||||
name: string;
|
||||
|
||||
|
@ -68,9 +65,6 @@ export {
|
|||
## Read mode to use for this stream
|
||||
mode: Mode &default=default_mode;
|
||||
|
||||
## Automatically start the input stream after the first filter has been added
|
||||
autostart: bool &default=T;
|
||||
|
||||
## Descriptive name. Used to remove a filter at a later time
|
||||
name: string;
|
||||
|
||||
|
|
|
@ -287,7 +287,6 @@ bool Manager::CreateStream(Stream* info, RecordVal* description)
|
|||
}
|
||||
|
||||
EnumVal* reader = description->LookupWithDefault(rtype->FieldOffset("reader"))->AsEnumVal();
|
||||
Val *autostart = description->LookupWithDefault(rtype->FieldOffset("autostart"));
|
||||
|
||||
ReaderFrontend* reader_obj = new ReaderFrontend(reader->InternalInt());
|
||||
assert(reader_obj);
|
||||
|
|
|
@ -227,7 +227,6 @@ private:
|
|||
// For implementing Fmt().
|
||||
char* buf;
|
||||
unsigned int buf_len;
|
||||
bool autostart;
|
||||
|
||||
unsigned int num_fields;
|
||||
const threading::Field* const * fields; // raw mapping
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue