summaryrefslogtreecommitdiffstats
path: root/include
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>2007-12-21 18:04:49 +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>2007-12-21 18:04:49 +0000
commit5bac4f06e8ebc81ed16ec93a0db8682e6a359608 (patch)
treeb9d97d47f41e11f1c16f35a32347dbfdb404736f /include
parent6d37133f5c98dadf6eb17f7f6854290f572dd4ad (diff)
o Use more appropriate names for the existing synchronization modes:
o rename `persistent' mode to `alarm' o rename `nack' mode to `ftfw' o Now default synchronization mode is ftfw instead of alarm
Diffstat (limited to 'include')
-rw-r--r--include/conntrackd.h10
-rw-r--r--include/sync.h4
2 files changed, 7 insertions, 7 deletions
diff --git a/include/conntrackd.h b/include/conntrackd.h
index 2722f00..1bb3879 100644
--- a/include/conntrackd.h
+++ b/include/conntrackd.h
@@ -34,11 +34,11 @@
#define DEFAULT_SYSLOG_FACILITY LOG_DAEMON
enum {
- SYNC_MODE_PERSISTENT_BIT = 0,
- SYNC_MODE_PERSISTENT = (1 << SYNC_MODE_PERSISTENT_BIT),
+ SYNC_MODE_ALARM_BIT = 0,
+ SYNC_MODE_ALARM = (1 << SYNC_MODE_ALARM_BIT),
- SYNC_MODE_NACK_BIT = 1,
- SYNC_MODE_NACK = (1 << SYNC_MODE_NACK_BIT),
+ SYNC_MODE_FTFW_BIT = 1,
+ SYNC_MODE_FTFW = (1 << SYNC_MODE_FTFW_BIT),
DONT_CHECKSUM_BIT = 2,
DONT_CHECKSUM = (1 << DONT_CHECKSUM_BIT),
@@ -84,7 +84,7 @@ struct ct_conf {
unsigned int listen_to_len;
unsigned int flags;
int family; /* protocol family */
- unsigned int resend_buffer_size;/* NACK protocol */
+ unsigned int resend_buffer_size;/* FTFW protocol */
unsigned int window_size;
int cache_write_through;
};
diff --git a/include/sync.h b/include/sync.h
index 6345513..a27fb93 100644
--- a/include/sync.h
+++ b/include/sync.h
@@ -18,7 +18,7 @@ struct sync_mode {
void (*run)(int step);
};
-extern struct sync_mode notrack;
-extern struct sync_mode nack;
+extern struct sync_mode alarm;
+extern struct sync_mode ftfw;
#endif