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.
27 lines
863 B
C
27 lines
863 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 DetectAddressCutIPv6(DetectAddressData *, DetectAddressData *, DetectAddressData **);
|
|
int DetectAddressCutNotIPv6(DetectAddressData *, DetectAddressData **);
|
|
int DetectAddressCmpIPv6(DetectAddressData *, DetectAddressData *);
|
|
|
|
int DetectAddressGroupCutIPv6(DetectAddressGroup *, DetectAddressGroup *, DetectAddressGroup **);
|
|
|
|
int DetectAddressGroupJoinIPv6(DetectAddressGroup *, DetectAddressGroup *);
|
|
|
|
void DetectAddressIPv6Tests(void);
|
|
|
|
#endif /* __DETECT_ADDRESS_IPV6_H__ */
|
|
|