suricata
|
Go to the source code of this file.
Data Structures | |
struct | UDPHdr_ |
Macros | |
#define | UDP_HEADER_LEN 8 |
#define | UDP_GET_RAW_LEN(udph) SCNtohs((udph)->uh_len) |
#define | UDP_GET_RAW_SRC_PORT(udph) SCNtohs((udph)->uh_sport) |
#define | UDP_GET_RAW_DST_PORT(udph) SCNtohs((udph)->uh_dport) |
#define | UDP_GET_RAW_SUM(udph) SCNtohs((udph)->uh_sum) |
#define | UDP_GET_LEN(p) UDP_GET_RAW_LEN(p->udph) |
#define | UDP_GET_SRC_PORT(p) UDP_GET_RAW_SRC_PORT(p->udph) |
#define | UDP_GET_DST_PORT(p) UDP_GET_RAW_DST_PORT(p->udph) |
#define | UDP_GET_SUM(p) UDP_GET_RAW_SUM(p->udph) |
Typedefs | |
typedef struct UDPHdr_ | UDPHdr |
Functions | |
void | DecodeUDPV4RegisterTests (void) |
Definition in file decode-udp.h.
#define UDP_GET_DST_PORT | ( | p | ) | UDP_GET_RAW_DST_PORT(p->udph) |
Definition at line 38 of file decode-udp.h.
#define UDP_GET_LEN | ( | p | ) | UDP_GET_RAW_LEN(p->udph) |
Definition at line 36 of file decode-udp.h.
#define UDP_GET_RAW_DST_PORT | ( | udph | ) | SCNtohs((udph)->uh_dport) |
Definition at line 33 of file decode-udp.h.
#define UDP_GET_RAW_LEN | ( | udph | ) | SCNtohs((udph)->uh_len) |
Definition at line 31 of file decode-udp.h.
#define UDP_GET_RAW_SRC_PORT | ( | udph | ) | SCNtohs((udph)->uh_sport) |
Definition at line 32 of file decode-udp.h.
#define UDP_GET_RAW_SUM | ( | udph | ) | SCNtohs((udph)->uh_sum) |
Definition at line 34 of file decode-udp.h.
#define UDP_GET_SRC_PORT | ( | p | ) | UDP_GET_RAW_SRC_PORT(p->udph) |
Definition at line 37 of file decode-udp.h.
#define UDP_GET_SUM | ( | p | ) | UDP_GET_RAW_SUM(p->udph) |
Definition at line 39 of file decode-udp.h.
#define UDP_HEADER_LEN 8 |
Definition at line 28 of file decode-udp.h.
void DecodeUDPV4RegisterTests | ( | void | ) |
Definition at line 221 of file decode-udp.c.
References UtRegisterTest().