mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Default known stores to false to avoid Broker stores
This commit is contained in:
parent
802d24cad7
commit
f6d3ed2395
4 changed files with 4 additions and 4 deletions
|
@ -28,7 +28,7 @@ export {
|
||||||
## When true, use a Broker data store, else use a regular Zeek set
|
## When true, use a Broker data store, else use a regular Zeek set
|
||||||
## with keys uniformly distributed over proxy nodes in cluster
|
## with keys uniformly distributed over proxy nodes in cluster
|
||||||
## operation.
|
## operation.
|
||||||
const use_host_store = T &redef;
|
const use_host_store = F &redef;
|
||||||
|
|
||||||
## The hosts whose existence should be logged and tracked.
|
## The hosts whose existence should be logged and tracked.
|
||||||
## See :zeek:type:`Host` for possible choices.
|
## See :zeek:type:`Host` for possible choices.
|
||||||
|
|
|
@ -37,7 +37,7 @@ export {
|
||||||
## When true, use a Broker data store, else use a regular Zeek set
|
## When true, use a Broker data store, else use a regular Zeek set
|
||||||
## with keys uniformly distributed over proxy nodes in cluster
|
## with keys uniformly distributed over proxy nodes in cluster
|
||||||
## operation.
|
## operation.
|
||||||
const use_service_store = T &redef;
|
const use_service_store = F &redef;
|
||||||
|
|
||||||
## Require UDP server to respond before considering it an "active service".
|
## Require UDP server to respond before considering it an "active service".
|
||||||
option service_udp_requires_response = T;
|
option service_udp_requires_response = T;
|
||||||
|
|
|
@ -37,7 +37,7 @@ export {
|
||||||
## When true, use a Broker data store, else use a regular Zeek set
|
## When true, use a Broker data store, else use a regular Zeek set
|
||||||
## with keys uniformly distributed over proxy nodes in cluster
|
## with keys uniformly distributed over proxy nodes in cluster
|
||||||
## operation.
|
## operation.
|
||||||
const use_cert_store = T &redef;
|
const use_cert_store = F &redef;
|
||||||
|
|
||||||
type AddrCertHashPair: record {
|
type AddrCertHashPair: record {
|
||||||
host: addr;
|
host: addr;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
41f6eb60c626316f0554548fcfa1ab07ddcf61a0
|
db9ce1c0c2aa9df87126061763f0e4faf749a8cb
|
Loading…
Add table
Add a link
Reference in a new issue