From 4725c3a83d0ba72a0a764710a9810e49ac18436d Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 23 Nov 2005 09:38:44 +0000 Subject: r11873: add some interval vars to the service context metze (This used to be commit 1d80ba062ae8a0854e35eb8a3fdae56990b790b8) --- source4/wrepl_server/wrepl_server.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'source4/wrepl_server/wrepl_server.h') 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; -- cgit