summaryrefslogtreecommitdiff
path: root/net/pload/patches
diff options
context:
space:
mode:
authorabs <abs>2000-01-25 10:33:29 +0000
committerabs <abs>2000-01-25 10:33:29 +0000
commite42955cc18a7d68f8c7d83b7407c44ac1bdbb2e4 (patch)
treeab055dec5805a70f102fa97e8157f1e69a1ccd1a /net/pload/patches
parent0534bb065a09ee36b43d11e14377f42dae11a8d1 (diff)
downloadpkgsrc-e42955cc18a7d68f8c7d83b7407c44ac1bdbb2e4.tar.gz
If the interface is down - report 'No Connection'. Patch submitted to
author.
Diffstat (limited to 'net/pload/patches')
-rw-r--r--net/pload/patches/patch-aa36
1 files changed, 36 insertions, 0 deletions
diff --git a/net/pload/patches/patch-aa b/net/pload/patches/patch-aa
new file mode 100644
index 00000000000..8e82a29e7fe
--- /dev/null
+++ b/net/pload/patches/patch-aa
@@ -0,0 +1,36 @@
+$NetBSD: patch-aa,v 1.1 2000/01/25 10:33:30 abs Exp $
+
+--- ioctl_stat.c Thu Mar 4 07:33:03 1999
++++ /usr/home/abs/ioctl_stat.c Tue Jan 25 02:05:44 2000
+@@ -68,6 +68,9 @@
+
+ void ioctl_stat(if_data *ifd)
+ {
++#ifdef __NetBSD__
++ struct ifreq ifr;
++#endif
+ struct ifpppstatsreq req;
+
+ if (s < 0) getsocket();
+@@ -78,8 +81,20 @@
+ #define ifr_name ifr__name
+ req.stats_ptr = (caddr_t) &req.stats;
+ #endif
+- sprintf(req.ifr_name, ifd->device);
+
++#ifdef __NetBSD__
++ sprintf(ifr.ifr_name, ifd->device);
++ if (ioctl(s, SIOCGIFFLAGS, (caddr_t)&ifr) < 0 ||
++ !(ifr.ifr_flags&IFF_UP))
++ {
++ /* invalid interface, or interface down */
++ ifd->in_bytes = 0UL;
++ ifd->out_bytes = 0UL;
++ return;
++ }
++#endif
++
++ sprintf(req.ifr_name, ifd->device);
+ if (ioctl(s, SIOCGPPPSTATS, &req) != 0)
+ {
+ /* non-existant device? */