mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 02:58:20 +00:00
Remove unused option: chunked_io_buffer_soft_cap
Used to be a part of old serialization/communication system.
This commit is contained in:
parent
0d34a1c646
commit
31772b1b96
7 changed files with 7 additions and 10 deletions
4
CHANGES
4
CHANGES
|
@ -1,4 +1,8 @@
|
||||||
|
|
||||||
|
2.6-576 | 2019-07-10 18:38:54 -0700
|
||||||
|
|
||||||
|
* Remove unused option: chunked_io_buffer_soft_cap (Jon Siwek, Corelight)
|
||||||
|
|
||||||
2.6-575 | 2019-07-09 18:28:03 -0700
|
2.6-575 | 2019-07-09 18:28:03 -0700
|
||||||
|
|
||||||
* Avoid a null dereference (Coverity-1402816) (Tim Wojtulewicz, Corelight)
|
* Avoid a null dereference (Coverity-1402816) (Tim Wojtulewicz, Corelight)
|
||||||
|
|
1
NEWS
1
NEWS
|
@ -479,6 +479,7 @@ Removed Functionality
|
||||||
- ``backdoor_stat_period``
|
- ``backdoor_stat_period``
|
||||||
- ``backdoor_stat_backoff``
|
- ``backdoor_stat_backoff``
|
||||||
- ``backdoor_endp_stats``
|
- ``backdoor_endp_stats``
|
||||||
|
- ``chunked_io_buffer_soft_cap``
|
||||||
|
|
||||||
- The following constants were used as part of deprecated functionality in version 2.6
|
- The following constants were used as part of deprecated functionality in version 2.6
|
||||||
or below and are removed from this release:
|
or below and are removed from this release:
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.6-575
|
2.6-576
|
||||||
|
|
2
doc
2
doc
|
@ -1 +1 @@
|
||||||
Subproject commit 80c0cb3d9db1cea6661b3d3c79d17e3b67533507
|
Subproject commit fb4942d261ebd2c8160a0862b527f3639ebf1245
|
|
@ -4608,11 +4608,6 @@ const sig_max_group_size = 50 &redef;
|
||||||
## Description transmitted to remote communication peers for identification.
|
## Description transmitted to remote communication peers for identification.
|
||||||
const peer_description = "zeek" &redef;
|
const peer_description = "zeek" &redef;
|
||||||
|
|
||||||
## The number of IO chunks allowed to be buffered between the child
|
|
||||||
## and parent process of remote communication before Zeek starts dropping
|
|
||||||
## connections to remote peers in an attempt to catch up.
|
|
||||||
const chunked_io_buffer_soft_cap = 800000 &redef;
|
|
||||||
|
|
||||||
## Reassemble the beginning of all TCP connections before doing
|
## Reassemble the beginning of all TCP connections before doing
|
||||||
## signature matching. Enabling this provides more accurate matching at the
|
## signature matching. Enabling this provides more accurate matching at the
|
||||||
## expense of CPU cycles.
|
## expense of CPU cycles.
|
||||||
|
|
|
@ -141,7 +141,6 @@ RecordType* rotate_info;
|
||||||
StringVal* log_rotate_base_time;
|
StringVal* log_rotate_base_time;
|
||||||
|
|
||||||
StringVal* peer_description;
|
StringVal* peer_description;
|
||||||
bro_uint_t chunked_io_buffer_soft_cap;
|
|
||||||
|
|
||||||
Val* profiling_file;
|
Val* profiling_file;
|
||||||
double profiling_interval;
|
double profiling_interval;
|
||||||
|
@ -213,7 +212,6 @@ void init_general_global_var()
|
||||||
|
|
||||||
peer_description =
|
peer_description =
|
||||||
internal_val("peer_description")->AsStringVal();
|
internal_val("peer_description")->AsStringVal();
|
||||||
chunked_io_buffer_soft_cap = opt_internal_unsigned("chunked_io_buffer_soft_cap");
|
|
||||||
|
|
||||||
packet_filter_default = opt_internal_int("packet_filter_default");
|
packet_filter_default = opt_internal_int("packet_filter_default");
|
||||||
|
|
||||||
|
|
|
@ -144,7 +144,6 @@ extern RecordType* rotate_info;
|
||||||
extern StringVal* log_rotate_base_time;
|
extern StringVal* log_rotate_base_time;
|
||||||
|
|
||||||
extern StringVal* peer_description;
|
extern StringVal* peer_description;
|
||||||
extern bro_uint_t chunked_io_buffer_soft_cap;
|
|
||||||
|
|
||||||
extern Val* profiling_file;
|
extern Val* profiling_file;
|
||||||
extern double profiling_interval;
|
extern double profiling_interval;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue