diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2008-08-08 22:49:34 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2008-08-08 22:49:34 +0000 |
commit | 6c6bcec1e5b311470799378c970ce1cff6ade984 (patch) | |
tree | 2364f38782e4110e33b0c5bf4aaf1ef77d09b079 /usr.sbin | |
parent | 9e2a0cb4653079e2ea5d43f489bada0a83cd0892 (diff) |
add a variable $SERVER_NAME which is "OpenBSD relayd" by default.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/relayd/relay.c | 7 | ||||
-rw-r--r-- | usr.sbin/relayd/relayd.conf.5 | 7 |
2 files changed, 11 insertions, 3 deletions
diff --git a/usr.sbin/relayd/relay.c b/usr.sbin/relayd/relay.c index 8c02fbfd568..9f1d52764dc 100644 --- a/usr.sbin/relayd/relay.c +++ b/usr.sbin/relayd/relay.c @@ -1,4 +1,4 @@ -/* $OpenBSD: relay.c,v 1.100 2008/08/08 20:34:30 reyk Exp $ */ +/* $OpenBSD: relay.c,v 1.101 2008/08/08 22:49:33 reyk Exp $ */ /* * Copyright (c) 2006, 2007, 2008 Reyk Floeter <reyk@openbsd.org> @@ -1003,6 +1003,11 @@ relay_expand_http(struct ctl_relay_event *cre, char *val, char *buf, size_t len) "$SERVER_PORT", ibuf) != 0) return (NULL); } + if (strstr(val, "$SERVER_NAME") != NULL) { + if (expand_string(buf, len, + "$SERVER_NAME", RELAYD_SERVERNAME) != 0) + return (NULL); + } } if (strstr(val, "$TIMEOUT") != NULL) { snprintf(ibuf, sizeof(ibuf), "%lu", rlay->rl_conf.timeout.tv_sec); diff --git a/usr.sbin/relayd/relayd.conf.5 b/usr.sbin/relayd/relayd.conf.5 index 55989fd9f21..68b243a5609 100644 --- a/usr.sbin/relayd/relayd.conf.5 +++ b/usr.sbin/relayd/relayd.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: relayd.conf.5,v 1.92 2008/07/25 12:29:33 jmc Exp $ +.\" $OpenBSD: relayd.conf.5,v 1.93 2008/08/08 22:49:33 reyk Exp $ .\" .\" Copyright (c) 2006, 2007 Reyk Floeter <reyk@openbsd.org> .\" Copyright (c) 2006, 2007 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -15,7 +15,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: July 25 2008 $ +.Dd $Mdocdate: August 8 2008 $ .Dt RELAYD.CONF 5 .Os .Sh NAME @@ -765,6 +765,9 @@ The TCP source port of the connected client. The configured IP address of the relay. .It Ic $SERVER_PORT The configured TCP server port of the relay. +.It Ic $SERVER_NAME +The server software name of +.Xr relayd 8 . .It Ic $TIMEOUT The configured session timeout of the relay. .El |