mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
19 lines
625 B
Text
19 lines
625 B
Text
##! This script adds a string version of the ip_proto field. It's not recommended
|
|
##! to load this policy and the ip_proto removal policy at the same time, as
|
|
##! conn.log will end up with useless information in the log from this field.
|
|
|
|
@load base/protocols/conn
|
|
|
|
module Conn;
|
|
|
|
redef record Info += {
|
|
## A string version of the ip_proto field
|
|
ip_proto_name: string &log &optional;
|
|
};
|
|
|
|
event new_connection(c: connection) &priority=5 {
|
|
# In case we're the first access
|
|
Conn::set_conn(c, F);
|
|
if ( c$conn?$ip_proto && c$conn$ip_proto in IP::protocol_names )
|
|
c$conn$ip_proto_name = IP::protocol_names[c$conn$ip_proto];
|
|
}
|