summaryrefslogtreecommitdiff
path: root/source4/wrepl_server/wrepl_server.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-11-23 09:38:44 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:46:39 -0500
commit4725c3a83d0ba72a0a764710a9810e49ac18436d (patch)
tree5305a4118b7232286270cebb19741010a2e612fb /source4/wrepl_server/wrepl_server.h
parente3e066fcb4d51611ff346ba4cff23aad659c2065 (diff)
downloadsamba-4725c3a83d0ba72a0a764710a9810e49ac18436d.tar.gz
samba-4725c3a83d0ba72a0a764710a9810e49ac18436d.tar.bz2
samba-4725c3a83d0ba72a0a764710a9810e49ac18436d.zip
r11873: add some interval vars to the service context
metze (This used to be commit 1d80ba062ae8a0854e35eb8a3fdae56990b790b8)
Diffstat (limited to 'source4/wrepl_server/wrepl_server.h')
-rw-r--r--source4/wrepl_server/wrepl_server.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/source4/wrepl_server/wrepl_server.h b/source4/wrepl_server/wrepl_server.h
index d7d71b6175..7025bff496 100644
--- a/source4/wrepl_server/wrepl_server.h
+++ b/source4/wrepl_server/wrepl_server.h
@@ -223,6 +223,34 @@ struct wreplsrv_service {
/* the winsdb handle */
struct ldb_context *wins_db;
+ /* some configuration */
+ struct {
+ /*
+ * the interval (in secs) till an active record will be marked as RELEASED
+ */
+ uint32_t renew_interval;
+
+ /*
+ * the interval (in secs) a record remains in RELEASED state,
+ * before it will be marked as TOMBSTONE
+ * (also known as extinction interval)
+ */
+ uint32_t tombstone_interval;
+
+ /*
+ * the interval (in secs) a record remains in TOMBSTONE state,
+ * before it will be removed from the database.
+ * (also known as extinction timeout)
+ */
+ uint32_t tombstone_timeout;
+
+ /*
+ * the interval (in secs) till a replica record will be verified
+ * with the owning wins server
+ */
+ uint32_t verify_interval;
+ } config;
+
/* all incoming connections */
struct wreplsrv_in_connection *in_connections;