zeek/src/const.bif
Tim Wojtulewicz d07d27453a Add infrastructure for automated expiration of storage entries
This is used for backends that don't support expiration natively.
2025-03-18 09:32:34 -07:00

36 lines
1.2 KiB
C++

##! Declaration of various scripting-layer constants that the Zeek core uses
##! internally. Documentation and default values for the scripting-layer
##! variables themselves are found in :doc:`/scripts/base/init-bare.zeek`.
const packet_source_inactivity_timeout: interval;
const allow_network_time_forward: bool;
const ignore_keep_alive_rexmit: bool;
const skip_http_data: bool;
const use_conn_size_analyzer: bool;
const detect_filtered_trace: bool;
const report_gaps_for_partial: bool;
const exit_only_after_terminate: bool;
const digest_salt: string;
const max_analyzer_violations: count;
const io_poll_interval_default: count;
const io_poll_interval_live: count;
const FTP::max_command_length: count;
const NFS3::return_data: bool;
const NFS3::return_data_max: count;
const NFS3::return_data_first_only: bool;
const Tunnel::max_depth: count;
const Tunnel::delay_teredo_confirmation: bool;
const Tunnel::delay_gtp_confirmation: bool;
const Tunnel::ip_tunnel_timeout: interval;
const Tunnel::validate_vxlan_checksums: bool;
const Threading::heartbeat_interval: interval;
const Log::flush_interval: interval;
const Log::write_buffer_size: count;
const Storage::expire_interval: interval;