mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
af_packet: Fix Zeek version dependency.
This commit is contained in:
parent
e945e2c8bb
commit
74f9d11776
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,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 3.0.0)
|
Zeek::AF_Packet - Packet acquisition via AF_Packet (dynamic, version 3.0.1)
|
||||||
[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
|
||||||
|
|
|
@ -16,6 +16,6 @@ zeek::plugin::Configuration Plugin::Configure()
|
||||||
config.description = "Packet acquisition via AF_Packet";
|
config.description = "Packet acquisition via AF_Packet";
|
||||||
config.version.major = 3;
|
config.version.major = 3;
|
||||||
config.version.minor = 0;
|
config.version.minor = 0;
|
||||||
config.version.patch = 0;
|
config.version.patch = 1;
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue