Displaying 3 results from an estimated 3 matches for "pollsecs".
Did you mean:
pollers
2009 Feb 21
0
[ANNOUNCE] conntrack-tools 0.9.11 released
...ng (or batch-based) synchronization: this feature was
introduced in the previous release, you can configure the daemon to send
batches periodically instead of the soft real-time state
synchronization. This allows you to set up a relaxed replication while
consuming less computational resources. See `PollSecs' clause.
* Add NetlinkOverrunResync clause: this feature allows
disabling/enabling the automatic re-synchronization when the daemon
notices that is losing state-change events.
Q: How stable are the conntrack-tools?
A: This software is under development. Nevertheless, it has been tested
in a c...
2009 Jan 25
0
[ANNOUNCE] conntrack-tools 0.9.10 released
...or more information on the statistics types.
* Polling (or batch-based) synchronization: you can configure the daemon
to send batches periodically instead of the soft real-time state
synchronization. This allows you to set up a relaxed replication while
consuming less computational resources. See `PollSecs' clause.
Q: How stable are the conntrack-tools?
A: This software is under development. Nevertheless, it has been tested
in a cluster environment composed of two stateful firewalls running
Debian 4.0 (Etch) with a Linux kernel 2.6.28, keepalived 1.1.15, using
conntrackd in FT-FW mode, randomly...
2020 Oct 21
0
[PATCH nbdkit] New filter: exitwhen: exit gracefully when an event occurs.
...unistd.h>
+#include <fcntl.h>
+#include <poll.h>
+#include <errno.h>
+#include <sys/types.h>
+
+#include <pthread.h>
+
+#include <nbdkit-filter.h>
+
+#include "cleanup.h"
+#include "utils.h"
+#include "vector.h"
+
+static unsigned pollsecs = 60;
+
+static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
+static unsigned connections = 0;
+static bool exiting = false;
+
+/* The list of events generated from command line parameters. */
+struct event {
+ enum { EVENT_FILE_CREATED = 1, EVENT_FILE_DELETED, EVENT_PROCESS_EXITS,
+...