af_packet: Increase version number.

This commit is contained in:
Jan Grashoefer 2020-10-01 14:06:43 +02:00 committed by Tim Wojtulewicz
parent 4deb8f6402
commit 130f7f7272
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@ instead of looking for the headers matching the running kernel's version. If
everything built and installed correctly, you should see this:: everything built and installed correctly, you should see this::
# zeek -NN Zeek::AF_Packet # zeek -NN Zeek::AF_Packet
Zeek::AF_Packet - Packet acquisition via AF_Packet (dynamic, version 2.0.0) Zeek::AF_Packet - Packet acquisition via AF_Packet (dynamic, version 2.1.0)
[Packet Source] AF_PacketReader (interface prefix "af_packet"; supports live input) [Packet Source] AF_PacketReader (interface prefix "af_packet"; supports live input)
[Type] AF_Packet::FanoutMode [Type] AF_Packet::FanoutMode
[Constant] AF_Packet::buffer_size [Constant] AF_Packet::buffer_size

View file

@ -15,7 +15,7 @@ plugin::Configuration Plugin::Configure()
config.name = "Zeek::AF_Packet"; config.name = "Zeek::AF_Packet";
config.description = "Packet acquisition via AF_Packet"; config.description = "Packet acquisition via AF_Packet";
config.version.major = 2; config.version.major = 2;
config.version.minor = 0; config.version.minor = 1;
config.version.patch = 0; config.version.patch = 0;
return config; return config;
} }