mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
669 B
C
23 lines
669 B
C
/* Address part of the detection engine.
|
|
*
|
|
* Copyright (c) 2008 Victor Julien
|
|
*/
|
|
|
|
#ifndef __DETECT_ADDRESS_IPV6_H__
|
|
#define __DETECT_ADDRESS_IPV6_H__
|
|
|
|
int AddressIPv6Lt(u_int32_t *, u_int32_t *);
|
|
int AddressIPv6Gt(u_int32_t *, u_int32_t *);
|
|
int AddressIPv6Eq(u_int32_t *, u_int32_t *);
|
|
int AddressIPv6Le(u_int32_t *, u_int32_t *);
|
|
int AddressIPv6Ge(u_int32_t *, u_int32_t *);
|
|
|
|
int AddressCutIPv6(DetectAddressData *, DetectAddressData *, DetectAddressData **);
|
|
int AddressCutNotIPv6(DetectAddressData *, DetectAddressData **);
|
|
int AddressCmpIPv6(DetectAddressData *, DetectAddressData *);
|
|
|
|
void DetectAddressIPv6Tests(void);
|
|
|
|
#endif /* __DETECT_ADDRESS_IPV6_H__ */
|
|
|