aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 12:27:25 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 12:27:25 +0000
commit65dbd8752b4b183c11a631792ef2ad07a7f251e4 (patch)
treec329baa5221e9a09844482c842dc78af7468e312 /networking
parent60e3dd60160e0a3192fd0f2ed02cf6407ef36ed4 (diff)
downloadbusybox-65dbd8752b4b183c11a631792ef2ad07a7f251e4.tar.gz
zcip: getopt -> bb_getopt_ulflags
Diffstat (limited to 'networking')
-rw-r--r--networking/zcip.c61
1 files changed, 24 insertions, 37 deletions
diff --git a/networking/zcip.c b/networking/zcip.c
index e781a5882..55d28e563 100644
--- a/networking/zcip.c
+++ b/networking/zcip.c
@@ -201,8 +201,6 @@ static unsigned conflicts; // = 0;
static unsigned nprobes; // = 0;
static unsigned nclaims; // = 0;
static int ready; // = 0;
-static int quit; // = 0;
-static int foreground; // = 0;
static int verbose; // = 0;
static int state = PROBE;
@@ -211,39 +209,30 @@ int zcip_main(int argc, char *argv[])
struct ether_addr eth_addr;
char *why;
int fd;
- int t;
// parse commandline: prog [options] ifname script
- while ((t = getopt(argc, argv, "fqr:v")) != EOF) {
- switch (t) {
- case 'f':
- foreground = 1;
- continue;
- case 'q':
- quit = 1;
- continue;
- case 'r':
- if (inet_aton(optarg, &ip) == 0
- || (ntohl(ip.s_addr) & IN_CLASSB_NET)
- != LINKLOCAL_ADDR) {
- bb_error_msg_and_die("invalid link address");
- }
- continue;
- case 'v':
- verbose++;
- foreground = 1;
- continue;
- default:
- bb_error_msg_and_die("bad option");
+#define FOREGROUND (opts & 1)
+#define QUIT (opts & 2)
+ char *r_opt;
+ unsigned long opts;
+
+ bb_opt_complementally = "vv"; // -v options accumulate
+ opts = bb_getopt_ulflags(argc, argv, "fqr:v", &r_opt, &verbose);
+ if (opts & 4) {
+ if (inet_aton(r_opt, &ip) == 0
+ || (ntohl(ip.s_addr) & IN_CLASSB_NET) != LINKLOCAL_ADDR) {
+ bb_error_msg_and_die("invalid link address");
}
}
- if (optind < argc - 1) {
- intf = argv[optind++];
- setenv("interface", intf, 1);
- script = argv[optind++];
- }
- if (optind != argc || !intf)
+ if (verbose) opts |= 1;
+ argc -= optind;
+ argv += optind;
+ if (argc != 2)
bb_show_usage();
+
+ intf = argv[0];
+ script = argv[1];
+ setenv("interface", intf, 1);
openlog(bb_applet_name, 0, LOG_DAEMON);
// initialize the interface (modprobe, ifup, etc)
@@ -257,15 +246,13 @@ int zcip_main(int argc, char *argv[])
// open an ARP socket
fd = xsocket(PF_PACKET, SOCK_PACKET, htons(ETH_P_ARP));
// bind to the interface's ARP socket
- xbind(fd, &saddr, sizeof (saddr);
+ xbind(fd, &saddr, sizeof (saddr));
// get the interface's ethernet address
//memset(&ifr, 0, sizeof (ifr));
strncpy(ifr.ifr_name, intf, sizeof (ifr.ifr_name));
if (ioctl(fd, SIOCGIFHWADDR, &ifr) < 0) {
- foreground = 1;
- why = "get ethernet address";
- goto bad;
+ bb_perror_msg_and_die("get ethernet address");
}
memcpy(&eth_addr, &ifr.ifr_hwaddr.sa_data, ETH_ALEN);
@@ -283,7 +270,7 @@ int zcip_main(int argc, char *argv[])
// - link already has local address... just defend/update
// daemonize now; don't delay system startup
- if (!foreground) {
+ if (!FOREGROUND) {
xdaemon(0, verbose);
syslog(LOG_INFO, "start, interface %s", intf);
}
@@ -394,7 +381,7 @@ int zcip_main(int argc, char *argv[])
// NOTE: all other exit paths
// should deconfig ...
- if (quit)
+ if (QUIT)
return EXIT_SUCCESS;
}
break;
@@ -555,7 +542,7 @@ int zcip_main(int argc, char *argv[])
} // switch poll
}
bad:
- if (foreground)
+ if (FOREGROUND)
perror(why);
else
syslog(LOG_ERR, "%s %s, %s error: %s",