summaryrefslogtreecommitdiffstats
path: root/include/state_helper.h
diff options
context:
space:
mode:
author/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org </C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org>2008-01-17 16:56:50 +0000
committer/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org </C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org>2008-01-17 16:56:50 +0000
commita8f06005be7e61f0562d8c36d953f688922edf01 (patch)
treea31a44f5788cc5f8677ad696216b8d9416bc53e6 /include/state_helper.h
parentf248d75e65247a39c29052bc3b4fbcc043a4967c (diff)
Max Kellermann <max@duempel.org>:
use C99 integers (uint32_t instead of u_int32_t)
Diffstat (limited to 'include/state_helper.h')
-rw-r--r--include/state_helper.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/state_helper.h b/include/state_helper.h
index 1ed0b79..0015890 100644
--- a/include/state_helper.h
+++ b/include/state_helper.h
@@ -1,13 +1,15 @@
#ifndef _STATE_HELPER_H_
#define _STATE_HELPER_H_
+#include <stdint.h>
+
enum {
ST_H_SKIP,
ST_H_REPLICATE
};
struct state_replication_helper {
- u_int8_t proto;
+ uint8_t proto;
unsigned int state;
int (*verdict)(const struct state_replication_helper *h,