diff --git a/src/iosource/af_packet/README b/src/iosource/af_packet/README index 7a9a0932a7..31350ec41d 100644 --- a/src/iosource/af_packet/README +++ b/src/iosource/af_packet/README @@ -20,7 +20,7 @@ The following will compile and install the AF_Packet plugin alongside Zeek, assu If the headers are installed somewhere non-standard, add `--with-kernel=` to the `configure` command. Furthermore, `--with-latest-kernel` will use the latest headers available instead of looking for the headers matching the running kernel's version. If everything built and installed correctly, you should see this: # zeek -NN Zeek::AF_Packet - Zeek::AF_Packet - Packet acquisition via AF_Packet (dynamic, version 3.1.1) + Zeek::AF_Packet - Packet acquisition via AF_Packet (dynamic, version 3.2.0) [Packet Source] AF_PacketReader (interface prefix "af_packet"; supports live input) [Type] AF_Packet::FanoutMode [Constant] AF_Packet::buffer_size diff --git a/src/iosource/af_packet/src/Plugin.cc b/src/iosource/af_packet/src/Plugin.cc index f318d4af44..c512c0e367 100644 --- a/src/iosource/af_packet/src/Plugin.cc +++ b/src/iosource/af_packet/src/Plugin.cc @@ -15,7 +15,7 @@ zeek::plugin::Configuration Plugin::Configure() config.name = "Zeek::AF_Packet"; config.description = "Packet acquisition via AF_Packet"; config.version.major = 3; - config.version.minor = 1; - config.version.patch = 1; + config.version.minor = 2; + config.version.patch = 0; return config; }