aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-09-25 21:45:58 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-09-25 21:45:58 +0000
commit00b6f7a2c0e4a76d49eadfbeda56b4043a1e1bf0 (patch)
tree7fa09f8a448d71c604288ec50a1777e657f57db5 /networking
parent646a915c3ca69b3c1dd20bb3bc06531122b3ddb3 (diff)
downloadbusybox-w32-00b6f7a2c0e4a76d49eadfbeda56b4043a1e1bf0.tar.gz
busybox-w32-00b6f7a2c0e4a76d49eadfbeda56b4043a1e1bf0.tar.bz2
busybox-w32-00b6f7a2c0e4a76d49eadfbeda56b4043a1e1bf0.zip
Renamed "internal.h" to the more sensible "busybox.h".
-Erik git-svn-id: svn://busybox.net/trunk/busybox@1119 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'networking')
-rw-r--r--networking/hostname.c4
-rw-r--r--networking/nc.c2
-rw-r--r--networking/nslookup.c4
-rw-r--r--networking/ping.c4
-rw-r--r--networking/telnet.c2
-rw-r--r--networking/wget.c2
6 files changed, 9 insertions, 9 deletions
diff --git a/networking/hostname.c b/networking/hostname.c
index 77b545ded..4320a968c 100644
--- a/networking/hostname.c
+++ b/networking/hostname.c
@@ -1,6 +1,6 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* 2/*
3 * $Id: hostname.c,v 1.12 2000/07/16 20:57:15 kraai Exp $ 3 * $Id: hostname.c,v 1.13 2000/09/25 21:45:57 andersen Exp $
4 * Mini hostname implementation for busybox 4 * Mini hostname implementation for busybox
5 * 5 *
6 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> 6 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
@@ -23,7 +23,7 @@
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */ 24 */
25 25
26#include "internal.h" 26#include "busybox.h"
27#include <errno.h> 27#include <errno.h>
28#include <arpa/inet.h> 28#include <arpa/inet.h>
29#include <netdb.h> 29#include <netdb.h>
diff --git a/networking/nc.c b/networking/nc.c
index a544f32fc..fcacb0c45 100644
--- a/networking/nc.c
+++ b/networking/nc.c
@@ -25,7 +25,7 @@
25 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 25 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 26
27*/ 27*/
28#include "internal.h" 28#include "busybox.h"
29#include <stdio.h> 29#include <stdio.h>
30#include <stdlib.h> 30#include <stdlib.h>
31#include <unistd.h> 31#include <unistd.h>
diff --git a/networking/nslookup.c b/networking/nslookup.c
index 10d36b2d1..acb3e3bb2 100644
--- a/networking/nslookup.c
+++ b/networking/nslookup.c
@@ -21,7 +21,7 @@
21 * 21 *
22 */ 22 */
23 23
24#include "internal.h" 24#include "busybox.h"
25#include <ctype.h> 25#include <ctype.h>
26#include <errno.h> 26#include <errno.h>
27#include <stdio.h> 27#include <stdio.h>
@@ -170,4 +170,4 @@ int nslookup_main(int argc, char **argv)
170 return( TRUE); 170 return( TRUE);
171} 171}
172 172
173/* $Id: nslookup.c,v 1.11 2000/07/16 20:57:15 kraai Exp $ */ 173/* $Id: nslookup.c,v 1.12 2000/09/25 21:45:58 andersen Exp $ */
diff --git a/networking/ping.c b/networking/ping.c
index f3ce6fb80..70ea0f196 100644
--- a/networking/ping.c
+++ b/networking/ping.c
@@ -1,6 +1,6 @@
1/* vi: set sw=4 ts=4: */ 1/* vi: set sw=4 ts=4: */
2/* 2/*
3 * $Id: ping.c,v 1.24 2000/09/20 04:33:30 kraai Exp $ 3 * $Id: ping.c,v 1.25 2000/09/25 21:45:58 andersen Exp $
4 * Mini ping implementation for busybox 4 * Mini ping implementation for busybox
5 * 5 *
6 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> 6 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
@@ -31,7 +31,7 @@
31 * Original copyright notice is retained at the end of this file. 31 * Original copyright notice is retained at the end of this file.
32 */ 32 */
33 33
34#include "internal.h" 34#include "busybox.h"
35#include <sys/param.h> 35#include <sys/param.h>
36#include <sys/socket.h> 36#include <sys/socket.h>
37#include <sys/file.h> 37#include <sys/file.h>
diff --git a/networking/telnet.c b/networking/telnet.c
index cf55de6af..bfa964460 100644
--- a/networking/telnet.c
+++ b/networking/telnet.c
@@ -31,7 +31,7 @@
31 */ 31 */
32 32
33 33
34#include "internal.h" 34#include "busybox.h"
35#include <termios.h> 35#include <termios.h>
36#include <unistd.h> 36#include <unistd.h>
37#include <errno.h> 37#include <errno.h>
diff --git a/networking/wget.c b/networking/wget.c
index c06e76d90..58801ee47 100644
--- a/networking/wget.c
+++ b/networking/wget.c
@@ -7,7 +7,7 @@
7 * <chip@laserlink.net> 7 * <chip@laserlink.net>
8 */ 8 */
9 9
10#include "internal.h" 10#include "busybox.h"
11#include <stdio.h> 11#include <stdio.h>
12#include <stdlib.h> 12#include <stdlib.h>
13#include <unistd.h> 13#include <unistd.h>