netfilter
firewalling, NAT, and packet mangling for linux
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
utils.h File Reference
#include <string.h>
#include <netinet/in.h>
Include dependency graph for utils.h:
This graph shows which files directly or indirectly include this file:

Macros

#define IPPROTO_UDPLITE   136
 
#define STREQ(a, b)   (strcmp(a, b) == 0)
 
#define STRNEQ(a, b, n)   (strncmp(a, b, n) == 0)
 
#define STRCASEQ(a, b)   (strcasecmp(a, b) == 0)
 
#define STRNCASEQ(a, b, n)   (strncasecmp(a, b, n) == 0)
 
#define _STR(c)   #c
 
#define STR(c)   _STR(c)
 
#define MIN(a, b)   (a < b ? a : b)
 
#define MAX(a, b)   (a > b ? a : b)
 
#define UNUSED   __attribute__ ((unused))
 
#define ASSERT_UNUSED
 
#define ARRAY_SIZE(x)   (sizeof(x) / sizeof(*(x)))
 

Macro Definition Documentation

#define _STR (   c)    #c
#define ARRAY_SIZE (   x)    (sizeof(x) / sizeof(*(x)))
#define ASSERT_UNUSED
#define IPPROTO_UDPLITE   136
#define MAX (   a,
 
)    (a > b ? a : b)
#define MIN (   a,
 
)    (a < b ? a : b)
#define STR (   c)    _STR(c)
#define STRCASEQ (   a,
 
)    (strcasecmp(a, b) == 0)
#define STRNCASEQ (   a,
  b,
 
)    (strncasecmp(a, b, n) == 0)

Referenced by name_to_icmp(), and name_to_icmpv6().

#define STRNEQ (   a,
  b,
 
)    (strncmp(a, b, n) == 0)
#define UNUSED   __attribute__ ((unused))