summaryrefslogtreecommitdiffstats
path: root/include/sync.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>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/sync.h
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/sync.h')
-rw-r--r--include/sync.h4
1 files changed, 2 insertions, 2 deletions
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