diff options
author | djm@openbsd.org <djm@openbsd.org> | 2017-10-25 02:15:35 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2017-10-25 03:26:06 +0200 |
commit | acf559e1cffbd1d6167cc1742729fc381069f06b (patch) | |
tree | fc127e0bce21056c96dec59ebdc9e2ff9f5b1e4a /misc.h | |
parent | upstream commit (diff) | |
download | openssh-acf559e1cffbd1d6167cc1742729fc381069f06b.tar.xz openssh-acf559e1cffbd1d6167cc1742729fc381069f06b.zip |
upstream commit
Add optional rdomain qualifier to sshd_config's
ListenAddress option to allow listening on a different rdomain(4), e.g.
ListenAddress 0.0.0.0 rdomain 4
Upstream-ID: 24b6622c376feeed9e9be8b9605e593695ac9091
Diffstat (limited to 'misc.h')
-rw-r--r-- | misc.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: misc.h,v 1.65 2017/10/23 05:08:00 djm Exp $ */ +/* $OpenBSD: misc.h,v 1.66 2017/10/25 00:15:35 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -48,6 +48,8 @@ char *strdelim(char **); int set_nonblock(int); int unset_nonblock(int); void set_nodelay(int); +int set_reuseaddr(int); +int set_rdomain(int, const char *); int a2port(const char *); int a2tun(const char *, int *); char *put_host_port(const char *, u_short); |