diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-12-09 06:11:36 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-12-09 06:11:36 +0000 |
commit | 1792f8c48926450501e19d32e78e140bcb9661c6 (patch) | |
tree | 14d0304ebb774077e696a9c86117bf43d935d8bb /networking | |
parent | c24db7b591870978fdd2cec8995728d1520c2fa9 (diff) | |
download | busybox-1792f8c48926450501e19d32e78e140bcb9661c6.tar.gz |
Tail now works (costs 6k). Several other updates.
-Erik
Diffstat (limited to 'networking')
-rw-r--r-- | networking/hostname.c | 2 | ||||
-rw-r--r-- | networking/ping.c | 50 |
2 files changed, 24 insertions, 28 deletions
diff --git a/networking/hostname.c b/networking/hostname.c index be49de395..20e174187 100644 --- a/networking/hostname.c +++ b/networking/hostname.c @@ -1,5 +1,5 @@ /* - * $Id: hostname.c,v 1.4 1999/12/08 23:19:36 andersen Exp $ + * $Id: hostname.c,v 1.5 1999/12/09 06:11:36 andersen Exp $ * Mini hostname implementation for busybox * * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> diff --git a/networking/ping.c b/networking/ping.c index 45f3c20aa..4176ab390 100644 --- a/networking/ping.c +++ b/networking/ping.c @@ -1,5 +1,5 @@ /* - * $Id: ping.c,v 1.4 1999/12/08 23:19:36 andersen Exp $ + * $Id: ping.c,v 1.5 1999/12/09 06:11:36 andersen Exp $ * Mini ping implementation for busybox * * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> @@ -53,6 +53,7 @@ #define MAXPACKET 65468 #define MAX_DUP_CHK (8 * 128) #define MAXWAIT 10 +#define PINGINTERVAL 1 /* second */ #define O_QUIET (1 << 0) @@ -155,8 +156,8 @@ static void sendping(int ign) } signal(SIGALRM, sendping); - if (pingcount == 0 || ntransmitted < pingcount) { /* schedule next */ - alarm(1); + if (pingcount == 0 || ntransmitted < pingcount) { /* schedule next in 1s */ + alarm(PINGINTERVAL); } else { /* done, wait for the last ping to come back */ /* todo, don't necessarily need to wait so long... */ signal(SIGALRM, pingstats); @@ -243,9 +244,8 @@ static void ping(char *host) exit(1); } -#ifdef SUID_BUSYBOX + /* drop root privs if running setuid */ setuid(getuid()); -#endif memset(&pingaddr, 0, sizeof(struct sockaddr_in)); pingaddr.sin_family = AF_INET; @@ -305,35 +305,31 @@ static void ping(char *host) extern int ping_main(int argc, char **argv) { + char *thisarg; + argc--; argv++; options = 0; /* Parse any options */ - if (argc < 1) usage(ping_usage); - - while (**argv == '-') { - while (*++(*argv)) - switch (**argv) { - case 'c': - argc--; argv++; - if (argc < 1) usage(ping_usage); - pingcount = atoi(*argv); - break; - case 'q': - options |= O_QUIET; - break; - default: - usage(ping_usage); - } - argc--; - argv++; + while (argc > 1) { + if (**argv != '-') usage(ping_usage); + thisarg = *argv; thisarg++; + switch (*thisarg) { + case 'q': options |= O_QUIET; break; + case 'c': + argc--; argv++; + pingcount = atoi(*argv); + break; + default: + usage(ping_usage); + } + argc--; argv++; } - - if (argc < 1) usage(ping_usage); + if (argc < 1) usage(ping_usage); myid = getpid() & 0xFFFF; - ping(*(argv++)); - exit( TRUE); + ping(*argv); + exit(TRUE); } /* |