svn commit: trunk/busybox/networking/udhcp

aldot at busybox.net aldot at busybox.net
Tue Nov 21 11:23:11 UTC 2006


Author: aldot
Date: 2006-11-21 03:23:11 -0800 (Tue, 21 Nov 2006)
New Revision: 16605

Log:
- style fixes


Modified:
   trunk/busybox/networking/udhcp/dhcprelay.c


Changeset:
Modified: trunk/busybox/networking/udhcp/dhcprelay.c
===================================================================
--- trunk/busybox/networking/udhcp/dhcprelay.c	2006-11-21 11:15:58 UTC (rev 16604)
+++ trunk/busybox/networking/udhcp/dhcprelay.c	2006-11-21 11:23:11 UTC (rev 16605)
@@ -3,10 +3,10 @@
  *
  * Licensed under GPL v2, see file LICENSE in this tarball for details.
  *
- * DHCP Relay for 'DHCPv4 Configuration of IPSec Tunnel Mode' support 
- * Copyright (C) 2002 Mario Strasser <mast at gmx.net>, 
+ * DHCP Relay for 'DHCPv4 Configuration of IPSec Tunnel Mode' support
+ * Copyright (C) 2002 Mario Strasser <mast at gmx.net>,
  *                   Zuercher Hochschule Winterthur,
- *                   Netbeat AG 
+ *                   Netbeat AG
  * Upstream has GPL v2 or later
  */
 
@@ -21,7 +21,7 @@
 
 
 /* This list holds information about clients. The xid_* functions manipulate this list. */
-struct xid_item {
+static struct xid_item {
 	u_int32_t xid;
 	struct sockaddr_in ip;
 	int client;
@@ -33,10 +33,10 @@
 static struct xid_item * xid_add(u_int32_t xid, struct sockaddr_in *ip, int client)
 {
 	struct xid_item *item;
- 
+
 	/* create new xid entry */
 	item = xmalloc(sizeof(struct xid_item));
- 
+
 	/* add xid entry */
 	item->ip = *ip;
 	item->xid = xid;
@@ -133,15 +133,16 @@
 static char ** get_client_devices(char *dev_list, int *client_number)
 {
 	char *s, *list, **client_dev;
-	int i, cn=1;
+	int i, cn;
 
 	/* copy list */
 	list = xstrdup(dev_list);
 	if (list == NULL) return NULL;
 
 	/* get number of items */
-	for (s = dev_list; *s; s++) if (*s == ',')
-		cn++;
+	for (s = dev_list, cn = 1; *s; s++)
+		if (*s == ',')
+			cn++;
 
 	client_dev = xzalloc(cn * sizeof(*client_dev));
 
@@ -166,16 +167,16 @@
 {
 	int i;
 
-	// talk to real server on bootps
+	/* talk to real server on bootps */
 	fds[0] = listen_socket(htonl(INADDR_ANY), 67, server);
 	if (fds[0] < 0) return -1;
 	*max_socket = fds[0];
-	
-	// array starts at 1 since server is 0
+
+	/* array starts at 1 since server is 0 */
 	num_clients++;
 
 	for (i=1; i < num_clients; i++) {
-		// listen for clients on bootps
+		/* listen for clients on bootps */
 		fds[i] = listen_socket(htonl(INADDR_ANY), 67, client[i-1]);
 		if (fds[i] < 0) return -1;
 		if (fds[i] > *max_socket) *max_socket = fds[i];
@@ -274,7 +275,7 @@
 			if (FD_ISSET(fds[0], &rfds)) {
 				packlen = udhcp_get_packet(&dhcp_msg, fds[0]);
 				if (packlen > 0) {
-					pass_back(&dhcp_msg, packlen, fds); 
+					pass_back(&dhcp_msg, packlen, fds);
 				}
 			}
 			for (i = 1; i < num_sockets; i++) {
@@ -318,7 +319,7 @@
 	signal(SIGTERM, dhcprelay_signal_handler);
 	signal(SIGQUIT, dhcprelay_signal_handler);
 	signal(SIGINT, dhcprelay_signal_handler);
- 
+
 	num_sockets = init_sockets(clients, num_sockets, argv[2], fds, &max_socket);
 	if (num_sockets == -1)
 		bb_perror_msg_and_die("init_sockets() failed");




More information about the busybox-cvs mailing list