summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/misc.c b/misc.c
index 4f41332f9..4141e6c48 100644
--- a/misc.c
+++ b/misc.c
@@ -541,6 +541,9 @@ read_keyfile_line(FILE *f, const char *filename, char *buf, size_t bufsz,
541int 541int
542tun_open(int tun, int mode) 542tun_open(int tun, int mode)
543{ 543{
544#if defined(CUSTOM_SYS_TUN_OPEN)
545 return (sys_tun_open(tun, mode));
546#elif defined(SSH_TUN_BSD)
544 struct ifreq ifr; 547 struct ifreq ifr;
545 char name[100]; 548 char name[100];
546 int fd = -1, sock; 549 int fd = -1, sock;
@@ -594,6 +597,10 @@ tun_open(int tun, int mode)
594 debug("%s: failed to set %s mode %d: %s", __func__, name, 597 debug("%s: failed to set %s mode %d: %s", __func__, name,
595 mode, strerror(errno)); 598 mode, strerror(errno));
596 return (-1); 599 return (-1);
600#else
601 error("Tunnel interfaces are not supported on this platform");
602 return (-1);
603#endif
597} 604}
598 605
599void 606void