diff options
author | Pierre-Yves Ritschard <pyr@cvs.openbsd.org> | 2007-11-20 15:44:22 +0000 |
---|---|---|
committer | Pierre-Yves Ritschard <pyr@cvs.openbsd.org> | 2007-11-20 15:44:22 +0000 |
commit | 06cda98f2ac65d76367d70562e5e25990af9200b (patch) | |
tree | d12e087d7fbacc36c80efc526062aba56524bb2e /usr.sbin/relayd/relayd.h | |
parent | 592ca4a35f528940ac0c5a13b93918092acab8af (diff) |
Allow overriding the global interval in a table.
Table specific intervals must be multiples of the global interval.
help and ok reyk@
Diffstat (limited to 'usr.sbin/relayd/relayd.h')
-rw-r--r-- | usr.sbin/relayd/relayd.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/relayd/relayd.h b/usr.sbin/relayd/relayd.h index c615c94e183..5091bbb785b 100644 --- a/usr.sbin/relayd/relayd.h +++ b/usr.sbin/relayd/relayd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: relayd.h,v 1.74 2007/11/20 13:01:13 pyr Exp $ */ +/* $OpenBSD: relayd.h,v 1.75 2007/11/20 15:44:21 pyr Exp $ */ /* * Copyright (c) 2006, 2007 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -344,6 +344,7 @@ struct table_config { struct timeval timeout; in_port_t port; int retcode; + int skip_cnt; char name[TABLE_NAME_SIZE]; char path[MAXPATHLEN]; char exbuf[64]; @@ -354,6 +355,7 @@ struct table { TAILQ_ENTRY(table) entry; struct table_config conf; int up; + int skipped; struct hostlist hosts; SSL_CTX *ssl_ctx; int sendbuf_len; |