mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00

and replies. Almost ready, but now 1 test fails again ... [Note I broke git history by copying over the files into a new branch.]
15 lines
290 B
Standard ML
15 lines
290 B
Standard ML
|
|
signature dpd_dnp3_client {
|
|
ip-proto == tcp
|
|
# dnp3 packets always starts with 0x05 0x64 .
|
|
payload /\x05\0x64/
|
|
tcp-state originator
|
|
}
|
|
|
|
signature dpd_dnp3_server {
|
|
ip-proto == tcp
|
|
# dnp3 packets always starts with 0x05 0x64 .
|
|
payload /\x05\x64/
|
|
tcp-state responder
|
|
enable "dnp3"
|
|
}
|