summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorstas <stas@FreeBSD.org>2009-07-01 22:23:26 +0000
committerstas <stas@FreeBSD.org>2009-07-01 22:23:26 +0000
commit81cbbdf674755cfcd29f1ed8323e2dab60b304a7 (patch)
treeb5d644c13cae72c0f7032011f3f3bbd73f199f8f /usr.sbin
parentcd329071c1adcf814f2822cc399b248393527845 (diff)
downloadFreeBSD-src-81cbbdf674755cfcd29f1ed8323e2dab60b304a7.zip
FreeBSD-src-81cbbdf674755cfcd29f1ed8323e2dab60b304a7.tar.gz
- Properly order headers, local variables and prototypes. [1]
- Remove unneeded headers. - Return non-zero error code in usage(). Approved by: re (kib) Suggested by: bde [1]
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/wake/wake.c29
1 files changed, 11 insertions, 18 deletions
diff --git a/usr.sbin/wake/wake.c b/usr.sbin/wake/wake.c
index deaa812..1a3a65f 100644
--- a/usr.sbin/wake/wake.c
+++ b/usr.sbin/wake/wake.c
@@ -27,28 +27,21 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
-#include <err.h>
-#include <errno.h>
-#include <fcntl.h>
-#include <limits.h>
-#include <stdarg.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <sysexits.h>
-#include <unistd.h>
-
-#include <sys/param.h>
-#include <sys/queue.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <net/bpf.h>
#include <net/if.h>
-
#include <netinet/in.h>
#include <netinet/if_ether.h>
+#include <err.h>
+#include <fcntl.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+
#define _PATH_BPF "/dev/bpf"
#ifndef SYNC_LEN
@@ -59,18 +52,18 @@ __FBSDID("$FreeBSD$");
#define DESTADDR_COUNT 16
#endif
-static void usage(void);
-static int wake(const char *iface, const char *host);
static int bind_if_to_bpf(char const *ifname, int bpf);
static int get_ether(char const *text, struct ether_addr *addr);
static int send_wakeup(int bpf, struct ether_addr const *addr);
+static void usage(void);
+static int wake(const char *iface, const char *host);
static void
usage(void)
{
(void)fprintf(stderr, "usage: wake interface lladdr...\n");
- exit(0);
+ exit(1);
}
static int
@@ -144,10 +137,10 @@ send_wakeup(int bpf, struct ether_addr const *addr)
struct ether_header hdr;
u_char data[SYNC_LEN + ETHER_ADDR_LEN * DESTADDR_COUNT];
} __packed pkt;
+ u_char *p;
ssize_t bw;
ssize_t len;
int i;
- u_char *p;
(void)memset(pkt.hdr.ether_dhost, 0xff, sizeof(pkt.hdr.ether_dhost));
pkt.hdr.ether_type = htons(0);
OpenPOWER on IntegriCloud