mirror of
https://git.freebsd.org/ports.git
synced 2025-05-28 08:56:28 -04:00
https://github.com/zeek/zeek/releases/tag/v5.0.0 Changes incompatiable with 4.0.7: - The script-land ``union`` and ``timer`` types have been removed. They haven't had any actual semantics backing them for some time and shouldn't have functioned in any useable way. We opted to skip the deprecation cycle for these types for that reason. - Broker now uses a new network backend with a custom network protocol that is incompatible with the pre-5.0 backend. In practice, this means Zeek 4.x will not be able to exchange events with Zeek 5.x. Going forward, this new backend will allow us to keep the Broker protocol more stable and add new capabilities in a backwards compatible way. While we're here add a comment explaining why we really need uname -p instead of using ARCH (uname -m). Also solve a portlint nag. Reported by: Tim Wojtulewicz
10 lines
280 B
C++
10 lines
280 B
C++
--- src/input/readers/raw/Raw.h.orig 2022-07-05 21:28:35 UTC
|
|
+++ src/input/readers/raw/Raw.h
|
|
@@ -55,6 +55,7 @@ class Raw : public ReaderBackend (private)
|
|
bool firstrun;
|
|
time_t mtime;
|
|
ino_t ino;
|
|
+ dev_t dev;
|
|
|
|
// options set from the script-level.
|
|
std::string separator;
|