diff options
author | Toni <matzeton@googlemail.com> | 2024-01-09 00:39:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-09 00:39:59 +0100 |
commit | 6c3d162cd6d3f884b634397d63cea180b1e8f721 (patch) | |
tree | 604db58c872b736b97402ac1ef29891e83c2d96f /windows/src | |
parent | 90b999e3f1a67babbcd7003fb0ccab005d45f343 (diff) |
Add realtime protocol output to `ndpiReader`. (#2197)
* support for using a new flow callback invoked before the flow memory is free'd
* minor fixes
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'windows/src')
-rw-r--r-- | windows/src/ndpi_define.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/windows/src/ndpi_define.h b/windows/src/ndpi_define.h index 5a47f9254..1097a95e9 100644 --- a/windows/src/ndpi_define.h +++ b/windows/src/ndpi_define.h @@ -283,14 +283,15 @@ ndpi_parse_packet_line_info(ndpi_struct,flow); \ } \ -#define NDPI_IPSEC_PROTOCOL_ESP 50 -#define NDPI_IPSEC_PROTOCOL_AH 51 -#define NDPI_GRE_PROTOCOL_TYPE 0x2F -#define NDPI_ICMP_PROTOCOL_TYPE 0x01 -#define NDPI_IGMP_PROTOCOL_TYPE 0x02 -#define NDPI_EGP_PROTOCOL_TYPE 0x08 -#define NDPI_OSPF_PROTOCOL_TYPE 0x59 -#define NDPI_SCTP_PROTOCOL_TYPE 132 +#define NDPI_IPSEC_PROTOCOL_ESP 50 +#define NDPI_IPSEC_PROTOCOL_AH 51 +#define NDPI_GRE_PROTOCOL_TYPE 0x2F +#define NDPI_ICMP_PROTOCOL_TYPE 0x01 +#define NDPI_IGMP_PROTOCOL_TYPE 0x02 +#define NDPI_EGP_PROTOCOL_TYPE 0x08 +#define NDPI_OSPF_PROTOCOL_TYPE 0x59 +#define NDPI_VRRP_PROTOCOL_TYPE 112 +#define NDPI_SCTP_PROTOCOL_TYPE 132 #define NDPI_IPIP_PROTOCOL_TYPE 0x04 #define NDPI_ICMPV6_PROTOCOL_TYPE 0x3a #define NDPI_PGM_PROTOCOL_TYPE 0x71 |