diff --git a/ChangeLog b/ChangeLog index f1aac06..bf2982f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,7 +14,7 @@ + use /dev/urandom to seed xid's (instead of time(0)) (me) + fixed renew behavior (me) + udhcp now fits nicely into busybox - (Glenn McGrath as well as myself) + (Glenn McGrath as well as myself) + updated client manpage (me) + both client and server now use sockets for signal handling, hopefully, this will be the last needed change in signal @@ -39,7 +39,7 @@ (Ted Lemon ) + Improved (hopefully) NAKing behavior (me) + Added -b option (Jouni Malinen) -+ Compute checksums correctly on big endian hosts ++ Compute checksums correctly on big endian hosts (Jouni Malinen ) 0.9.7 (020526) diff --git a/clientpacket.c b/clientpacket.c index 5b27004..ec96601 100644 --- a/clientpacket.c +++ b/clientpacket.c @@ -82,7 +82,7 @@ static void init_packet(struct dhcpMessage *packet, char type) } -/* Add a paramater request list for stubborn DHCP servers. Pull the data +/* Add a parameter request list for stubborn DHCP servers. Pull the data * from the struct in options.c. Don't do bounds checking here because it * goes towards the head of the packet. */ static void add_requests(struct dhcpMessage *packet) diff --git a/common.c b/common.c index b46c9f4..c990b64 100644 --- a/common.c +++ b/common.c @@ -4,7 +4,7 @@ * simple helper functions. * * Russ Dill 2001-2003 - * Rewrited by Vladimir Oleynik (C) 2003 + * Rewritten by Vladimir Oleynik (C) 2003 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/common.h b/common.h index 677bbfd..cdc51cf 100644 --- a/common.h +++ b/common.h @@ -1,7 +1,7 @@ /* common.h * - * Russ Dill Soptember 2001 - * Rewrited by Vladimir Oleynik (C) 2003 + * Russ Dill September 2001 + * Rewritten by Vladimir Oleynik (C) 2003 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/packet.c b/packet.c index 7cbd83a..1c6bb0c 100644 --- a/packet.c +++ b/packet.c @@ -113,7 +113,7 @@ uint16_t checksum(void *addr, int count) } -/* Constuct a ip/udp header for a packet, and specify the source and dest hardware address */ +/* Construct a ip/udp header for a packet, and specify the source and dest hardware address */ int raw_packet(struct dhcpMessage *payload, uint32_t source_ip, int source_port, uint32_t dest_ip, int dest_port, uint8_t *dest_arp, int ifindex) { diff --git a/pidfile.c b/pidfile.c index d656c7a..2e0c753 100644 --- a/pidfile.c +++ b/pidfile.c @@ -2,7 +2,7 @@ * * Functions to assist in the writing and removing of pidfiles. * - * Russ Dill Soptember 2001 + * Russ Dill September 2001 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/pidfile.h b/pidfile.h index 7f8e8ae..ea97d1d 100644 --- a/pidfile.h +++ b/pidfile.h @@ -2,7 +2,7 @@ * * Functions to assist in the writing and removing of pidfiles. * - * Russ Dill Soptember 2001 + * Russ Dill September 2001 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/samples/sample.bound b/samples/sample.bound index c953e97..2003526 100755 --- a/samples/sample.bound +++ b/samples/sample.bound @@ -1,5 +1,5 @@ #!/bin/sh -# Sample udhcpc bound script +# Sample udhcpc renew script RESOLV_CONF="/etc/udhcpc/resolv.conf" diff --git a/samples/sample.renew b/samples/sample.renew index 2003526..c953e97 100755 --- a/samples/sample.renew +++ b/samples/sample.renew @@ -1,5 +1,5 @@ #!/bin/sh -# Sample udhcpc renew script +# Sample udhcpc bound script RESOLV_CONF="/etc/udhcpc/resolv.conf" diff --git a/samples/udhcpd.conf b/samples/udhcpd.conf index 2b93e0f..00105b3 100644 --- a/samples/udhcpd.conf +++ b/samples/udhcpd.conf @@ -33,7 +33,7 @@ interface eth0 #default: eth0 #auto_time 7200 #default: 7200 (2 hours) -# The amount of time that an IP will be reserved (leased) for if a +# The amount of time that an IP will be reserved (leased) for if a # DHCP decline message is received (seconds). #decline_time 3600 #default: 3600 (1 hour) diff --git a/script.c b/script.c index cd030d4..820fbb0 100644 --- a/script.c +++ b/script.c @@ -132,7 +132,7 @@ static void fill_options(char *dest, uint8_t *option, struct dhcp_option *type_p } -/* put all the paramaters into an environment */ +/* put all the parameters into an environment */ static char **fill_envp(struct dhcpMessage *packet) { int num_options = 0; diff --git a/serverpacket.c b/serverpacket.c index 937436a..bc9d822 100644 --- a/serverpacket.c +++ b/serverpacket.c @@ -1,6 +1,6 @@ /* serverpacket.c * - * Constuct and send DHCP server packets + * Construct and send DHCP server packets * * Russ Dill July 2001 * diff --git a/signalpipe.c b/signalpipe.c index 4f3292b..074c8a6 100644 --- a/signalpipe.c +++ b/signalpipe.c @@ -1,8 +1,8 @@ /* signalpipe.c * - * Signal pipe infastructure. A reliable way of delivering signals. + * Signal pipe infrastructure. A reliable way of delivering signals. * - * Russ Dill Decemeber 2003 + * Russ Dill December 2003 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by