af_packet: Increased version number.

This commit is contained in:
Jan Grashoefer 2017-01-29 23:35:32 +01:00 committed by Tim Wojtulewicz
parent 1dfb115e35
commit 1a107bd838
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ command. If everything built and installed correctly, you should see
this::
# bro -NN Bro::AF_Packet
Bro::AF_Packet - Packet acquisition via AF_Packet (dynamic, version 1.1)
Bro::AF_Packet - Packet acquisition via AF_Packet (dynamic, version 1.2)
[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 = 1;
config.version.minor = 2;
return config;
}