aboutsummaryrefslogtreecommitdiff
path: root/Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-06-03 15:32:45 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-06-03 15:32:45 +0000
commit477affebdeb4fdc306ecb9b4ac123732193693dc (patch)
tree1dc0ae98a98bb0a0efa0a7d122b3e1ee63e9e7b2 /Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h
parent698a70db449374c6057ee216b6c7c75f7f29e45c (diff)
Minor documentation cleanups.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1312 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h')
-rw-r--r--Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h b/Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h
index cacdd8ff..2c8c4d88 100644
--- a/Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h
+++ b/Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h
@@ -45,52 +45,52 @@
#include "ProtocolDecoders.h"
/* Macros: */
- /** DHCP operation constant, indicating a request from a host to a DHCP server */
+ /** DHCP operation constant, indicating a request from a host to a DHCP server. */
#define DHCP_OP_BOOTREQUEST 0x01
- /** DHCP operation constant, indicating a reply from a DHCP server to a host */
+ /** DHCP operation constant, indicating a reply from a DHCP server to a host. */
#define DHCP_OP_BOOTREPLY 0x02
- /** Hardware type constant, indicating Ethernet as a carrier */
+ /** Hardware type constant, indicating Ethernet as a carrier. */
#define DHCP_HTYPE_ETHERNET 0x01
- /** Magic boot protocol "cookie", inserted into all BOOTP packets (BOOTP is the carrier of DHCP) */
+ /** Magic boot protocol "cookie", inserted into all BOOTP packets (BOOTP is the carrier of DHCP). */
#define DHCP_MAGIC_COOKIE 0x63825363
- /** DHCP option list entry header, indicating that a subnet mask will follow */
+ /** DHCP option list entry header, indicating that a subnet mask will follow. */
#define DHCP_OPTION_SUBNETMASK 1
- /** DHCP option list entry header, indicating that the DHCP message type constant will follow */
+ /** DHCP option list entry header, indicating that the DHCP message type constant will follow. */
#define DHCP_OPTION_MESSAGETYPE 53
- /** DHCP option list entry header, indicating that the IP address of the DHCP server will follow */
+ /** DHCP option list entry header, indicating that the IP address of the DHCP server will follow. */
#define DHCP_OPTION_DHCPSERVER 54
- /** DHCP option list entry header, used to pad out option data */
+ /** DHCP option list entry header, used to pad out option data. */
#define DHCP_OPTION_PAD 0
- /** DHCP option list entry header, indicating the end of option data */
+ /** DHCP option list entry header, indicating the end of option data. */
#define DHCP_OPTION_END 255
- /** Message type constant, used in the DHCP option data field, requesting that a DHCP server offer an IP address */
+ /** Message type constant, used in the DHCP option data field, requesting that a DHCP server offer an IP address. */
#define DHCP_MESSAGETYPE_DISCOVER 1
- /** Message type constant, used in the DHCP option data field, indicating that a DHCP server is offering an IP address */
+ /** Message type constant, used in the DHCP option data field, indicating that a DHCP server is offering an IP address. */
#define DHCP_MESSAGETYPE_OFFER 2
- /** Message type constant, used in the DHCP option data field, requesting that a DHCP server lease a given IP address */
+ /** Message type constant, used in the DHCP option data field, requesting that a DHCP server lease a given IP address. */
#define DHCP_MESSAGETYPE_REQUEST 3
- /** Message type constant, used in the DHCP option data field, declining an offered DHCP server IP address lease */
+ /** Message type constant, used in the DHCP option data field, declining an offered DHCP server IP address lease. */
#define DHCP_MESSAGETYPE_DECLINE 4
- /** Message type constant, used in the DHCP option data field, ACKing a host IP lease request */
+ /** Message type constant, used in the DHCP option data field, ACKing a host IP lease request. */
#define DHCP_MESSAGETYPE_ACK 5
- /** Message type constant, used in the DHCP option data field, NACKing a host IP lease request */
+ /** Message type constant, used in the DHCP option data field, NACKing a host IP lease request. */
#define DHCP_MESSAGETYPE_NACK 6
- /** Message type constant, used in the DHCP option data field, indicating that a host is releasing a leased IP address */
+ /** Message type constant, used in the DHCP option data field, indicating that a host is releasing a leased IP address. */
#define DHCP_MESSAGETYPE_RELEASE 7
/* Type Defines: */