More removal of "#if 0" content.
author"Robert P. J. Day" <rpjday@mindspring.com>
Sat, 1 Jul 2006 14:59:54 +0000 (14:59 -0000)
committer"Robert P. J. Day" <rpjday@mindspring.com>
Sat, 1 Jul 2006 14:59:54 +0000 (14:59 -0000)
networking/arping.c
networking/ifupdown.c
networking/ip.c
networking/ping6.c
networking/route.c
networking/telnet.c

index e12fa508b41c004c75784250f188bbbfe6dae748..6cb6076125db567a76cffefd3b0ad53e8809d928 100644 (file)
@@ -52,18 +52,6 @@ static int req_recv;
 
 #define MS_TDIFF(tv1,tv2) ( ((tv1).tv_sec-(tv2).tv_sec)*1000 + \
                           ((tv1).tv_usec-(tv2).tv_usec)/1000 )
-#if 0
-static void set_signal(int signo, void (*handler) (void))
-{
-       struct sigaction sa;
-
-       memset(&sa, 0, sizeof(sa));
-       sa.sa_handler = (void (*)(int)) handler;
-       sa.sa_flags = SA_RESTART;
-       sigaction(signo, &sa, NULL);
-}
-#endif
-
 static int send_pack(int sock, struct in_addr *src_addr,
                                         struct in_addr *dst_addr, struct sockaddr_ll *ME,
                                         struct sockaddr_ll *HE)
index ff47e60c932a52627d814af348c7272c8315e815..8ee4883640ab2877609ed7a0b0a7ee8de0eda7ce 100644 (file)
 #define MAX_INTERFACE_LENGTH 10
 #endif
 
-#if 0
-#define debug_noise(fmt, args...) printf(fmt, ## args)
-#else
 #define debug_noise(fmt, args...)
-#endif
 
 /* Forward declaration */
 struct interface_defn_t;
index bba70890d4cbb7083669370480dad33fe7635f30..d44cc0d6005ebc5322c77f18a27ee82014a1d5e1 100644 (file)
 
 #include "busybox.h"
 
-#if 0
-int preferred_family = AF_UNSPEC;
-int oneline = 0;
-char * _SL_ = NULL;
-
-void ip_parse_common_args(int *argcp, char ***argvp)
-{
-       int argc = *argcp;
-       char **argv = *argvp;
-
-       while (argc > 1) {
-               char *opt = argv[1];
-
-               if (strcmp(opt,"--") == 0) {
-                       argc--; argv++;
-                       break;
-               }
-
-               if (opt[0] != '-')
-                       break;
-
-               if (opt[1] == '-')
-                       opt++;
-
-               if (matches(opt, "-family") == 0) {
-                       argc--;
-                       argv++;
-                       if (strcmp(argv[1], "inet") == 0)
-                               preferred_family = AF_INET;
-                       else if (strcmp(argv[1], "inet6") == 0)
-                               preferred_family = AF_INET6;
-                       else if (strcmp(argv[1], "link") == 0)
-                               preferred_family = AF_PACKET;
-                       else
-                               invarg(bb_msg_invalid_arg, argv[1], "-family");
-               } else if (strcmp(opt, "-4") == 0) {
-                       preferred_family = AF_INET;
-               } else if (strcmp(opt, "-6") == 0) {
-                       preferred_family = AF_INET6;
-               } else if (strcmp(opt, "-0") == 0) {
-                       preferred_family = AF_PACKET;
-               } else if (matches(opt, "-oneline") == 0) {
-                       ++oneline;
-               } else {
-                       bb_show_usage();
-               }
-               argc--; argv++;
-       }
-       _SL_ = oneline ? "\\" : "\n" ;
-}
-#endif
-
 int ip_main(int argc, char **argv)
 {
        int ret = EXIT_FAILURE;
index c15ea5c4a0ba9d9fe8ec312f662af1e672c72977..f7cb268d230430102eed14f5753587b14194faac 100644 (file)
@@ -351,12 +351,6 @@ static void ping(const char *host)
                struct icmp6_filter filt;
                if (!(options & O_VERBOSE)) {
                        ICMP6_FILTER_SETBLOCKALL(&filt);
-#if 0
-                       if ((options & F_FQDN) || (options & F_FQDNOLD) ||
-                               (options & F_NODEADDR) || (options & F_SUPTYPES))
-                               ICMP6_FILTER_SETPASS(ICMP6_NI_REPLY, &filt);
-                       else
-#endif
                                ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt);
                } else {
                        ICMP6_FILTER_SETPASSALL(&filt);
index 062ba8a1329e48d808ac3e5cdaed48002d04fee2..d9057861557e02c454942f4ced5becc8099017bb 100644 (file)
@@ -628,11 +628,7 @@ static void INET6_displayroutes(int noresolve)
                        snaddr6.sin6_family = AF_INET6;
                        INET6_rresolve(naddr6, sizeof(naddr6),
                                                   (struct sockaddr_in6 *) &snaddr6,
-#if 0
-                                                  (noresolve | 0x8000) /* Default instead of *. */
-#else
                                                   0x0fff /* Apparently, upstream never resolves. */
-#endif
                                                   );
 
                        if (!r) {                       /* 1st pass */
index c835c7a4525b2450fdc820428e4cdc551614852c..59268c6de928b961ddb4900bb0f6e5a344915452 100644 (file)
 #include <netinet/in.h>
 #include "busybox.h"
 
-#if 0
-enum { DOTRACE = 1 };
-#endif
-
 #ifdef DOTRACE
 #include <arpa/inet.h> /* for inet_ntoa()... */
 #define TRACE(x, y) do { if (x) printf y; } while (0)
@@ -311,17 +307,6 @@ static void putiac2(byte wwdd, byte c)
        putiac(c);
 }
 
-#if 0
-static void putiac1(byte c)
-{
-       if (G.iaclen + 2 > IACBUFSIZE)
-               iacflush();
-
-       putiac(IAC);
-       putiac(c);
-}
-#endif
-
 #ifdef CONFIG_FEATURE_TELNET_TTYPE
 static void putiac_subopt(byte c, char *str)
 {