aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-12-14 04:34:58 +0000
committerMatt Kraai <kraai@debian.org>2000-12-14 04:34:58 +0000
commit95fa0ea3d421772f29f78e3484ad824ffd5e8b6f (patch)
treee016bb8c29e0ab2a0c544cbd87cf97c8213922fd
parent6f6aa9b428f8d9c1988b837a3e473c5248358384 (diff)
downloadbusybox-w32-95fa0ea3d421772f29f78e3484ad824ffd5e8b6f.tar.gz
busybox-w32-95fa0ea3d421772f29f78e3484ad824ffd5e8b6f.tar.bz2
busybox-w32-95fa0ea3d421772f29f78e3484ad824ffd5e8b6f.zip
Shutdown sending on the socket when stdin closes.
-rw-r--r--nc.c2
-rw-r--r--networking/nc.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/nc.c b/nc.c
index 805bbd4d8..84c1a815e 100644
--- a/nc.c
+++ b/nc.c
@@ -111,6 +111,8 @@ int nc_main(int argc, char **argv)
111 exit(0); 111 exit(0);
112 ofd = fileno(stdout); 112 ofd = fileno(stdout);
113 } else { 113 } else {
114 if (nread == 0)
115 shutdown(sfd, 1);
114 ofd = sfd; 116 ofd = sfd;
115 } 117 }
116 118
diff --git a/networking/nc.c b/networking/nc.c
index 805bbd4d8..84c1a815e 100644
--- a/networking/nc.c
+++ b/networking/nc.c
@@ -111,6 +111,8 @@ int nc_main(int argc, char **argv)
111 exit(0); 111 exit(0);
112 ofd = fileno(stdout); 112 ofd = fileno(stdout);
113 } else { 113 } else {
114 if (nread == 0)
115 shutdown(sfd, 1);
114 ofd = sfd; 116 ofd = sfd;
115 } 117 }
116 118