af_packet: Increased version number.

This commit is contained in:
Jan Grashoefer 2017-11-22 17:58:53 +01:00 committed by Tim Wojtulewicz
parent 4eaa201821
commit b6e52b262c
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ the headers matching the running kernel's version. If everything built and insta
correctly, you should see this::
# bro -NN Bro::AF_Packet
Bro::AF_Packet - Packet acquisition via AF_Packet (dynamic, version 1.2)
Bro::AF_Packet - Packet acquisition via AF_Packet (dynamic, version 1.3)
[Packet Source] AF_PacketReader (interface prefix "af_packet"; supports live input)
[Type] AF_Packet::FanoutMode
[Constant] AF_Packet::buffer_size

View file

@ -14,6 +14,6 @@ plugin::Configuration Plugin::Configure()
config.name = "Bro::AF_Packet";
config.description = "Packet acquisition via AF_Packet";
config.version.major = 1;
config.version.minor = 2;
config.version.minor = 3;
return config;
}