Johanna
Johanna
I tried making some script-code backwards compatible and notices that this code... ```zeek function test() { local make_epoch_result = function(pass_name: string): function(ts: time) { @if ( Version::at_least("4.1") ) return function...
In #1634, it was mentioned that it would be nice to make an option that changes the log-fields configurable during run-time. Testing this showed that we currently cannot modify the...
I recently tried if spicy works on MacOs 10.14 - (which is currently specifically disabled in CMakeLists.txt). The surprising result is that it works without any problems - it basically...
According to the documentation at https://docs.zeek.org/projects/spicy/en/latest/programming/parsing.html?highlight=inout#unit-parameters, a string parameter should be able to be declared as inout. Trying this: ``` module TESTING; public type Handshake = unit(inout version: string) {...
It would be kind of neat if the following syntax worked: ``` type test = unit { a: uint16; b: uint16; on a, b { print "execute this"; } ```...
Hi, I just wanted to check if there is a reason that persistent workers don't support a Dockerfile when using containers, but only specific images. For our use-case, being able...
Hi, After playing around with it a bunch, I realized that the current behavior of store_events does not really mesh that greatly when combined with storing sets or tables in...
Test updates are necessary due to removed CT logs. Fixes GH-3620. This should make it into 6.2.0 if possible.
Binpac analyzers have the ability to access script-level configuration options set in Zeek - examples are `zeek::BifConst::SSL::dtls_max_reported_version_errors` or `BifConst::FTP::max_command_length`. It would be neat to have a similar ability in Spicy...
See #3438. This PR is mostly here to run the test-cases; this won't be merged for a while :)