--- embedtools/src/get1steth.c 2013/01/18 12:58:14 1.4 +++ embedtools/src/get1steth.c 2013/10/14 07:11:04 1.4.2.1 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ - * $Id: get1steth.c,v 1.4 2013/01/18 12:58:14 misho Exp $ + * $Id: get1steth.c,v 1.4.2.1 2013/10/14 07:11:04 misho Exp $ * ************************************************************************* The ELWIX and AITNET software is distributed under the following @@ -12,7 +12,7 @@ terms: All of the documentation and software included in the ELWIX and AITNET Releases is copyrighted by ELWIX - Sofia/Bulgaria -Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 +Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 by Michael Pounov . All rights reserved. Redistribution and use in source and binary forms, with or without @@ -52,7 +52,8 @@ int Verbose; extern char compiled[], compiledby[], compilehost[]; -static void Usage() +static void +Usage() { printf("-= GET_FIRST_ETHERNET =- Get First Ethernet Interface tool\n" "=== %s === %s@%s ===\n\n" @@ -63,7 +64,8 @@ static void Usage() } #ifdef HAVE_KLDNEXT -static int kldLoad() +static int +kldLoad() { struct module_stat mstat; register int i, j; @@ -93,7 +95,8 @@ static int kldLoad() // ------------------------------- -int main(int argc, char **argv) +int +main(int argc, char **argv) { char ch, GetOnly = 0; struct ifaddrs *ifa, *ifp; @@ -183,8 +186,9 @@ int main(int argc, char **argv) } else VERB(3) syslog(LOG_NOTICE, "VLAN module ... %s\n", s ? "Loaded" : "Already loaded"); #endif + /* up parent interface */ - // create vlan + /* create vlan */ memset(&ifr, 0, sizeof ifr); strlcpy(vlr.vlr_parent, szIface, IFNAMSIZ); vlr.vlr_tag = MGMT_VTAG; @@ -211,7 +215,7 @@ int main(int argc, char **argv) memset(&ifra, 0, sizeof ifra); #if defined(__FreeBSD__) - // rename iface + /* rename iface */ VERB(2) syslog(LOG_NOTICE, "Info:: Created interface=%s\n", MGMT_IFACE); ifr.ifr_data = MGMT_NAME; if (errno != EEXIST && ioctl(s, SIOCSIFNAME, &ifr) == -1) { @@ -226,7 +230,7 @@ int main(int argc, char **argv) strlcpy(ifra.ifra_name, MGMT_IFACE, IFNAMSIZ); #endif - // assign address & up + /* assign address & up */ sin = (struct sockaddr_in*) &ifra.ifra_addr; sin->sin_len = sizeof ifra.ifra_addr; sin->sin_family = AF_INET;