summaryrefslogtreecommitdiff
path: root/common/tables.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2000-12-29 06:46:23 +0000
committerTed Lemon <source@isc.org>2000-12-29 06:46:23 +0000
commit90439d6bfe72ee667adc804f37d075ca199a6837 (patch)
tree153b742254d2eee8fdd2238c0b8b086a672cbaf1 /common/tables.c
parent42c6a803509672bcc693a972013b180cf4378e65 (diff)
downloadisc-dhcp-90439d6bfe72ee667adc804f37d075ca199a6837.tar.gz
Fix up internal documentation for option parse codes.
Diffstat (limited to 'common/tables.c')
-rw-r--r--common/tables.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/common/tables.c b/common/tables.c
index 73de6b48..d2633472 100644
--- a/common/tables.c
+++ b/common/tables.c
@@ -43,7 +43,7 @@
#ifndef lint
static char copyright[] =
-"$Id: tables.c,v 1.48 2000/12/28 23:19:15 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n";
+"$Id: tables.c,v 1.49 2000/12/29 06:46:23 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -58,7 +58,6 @@ HASH_FUNCTIONS (option, const char *, struct option)
Format codes:
- e - end of data
I - IP address
l - 32-bit signed integer
L - 32-bit unsigned integer
@@ -85,6 +84,15 @@ HASH_FUNCTIONS (option, const char *, struct option)
This is done by placing a 'e' at the beginning of the option. The
'e' has no other purpose, and is not required if 'E' is the first
thing in the option.
+ X - either an ASCII string or binary data. On output, the string is
+ scanned to see if it's printable ASCII and, if so, output as a
+ quoted string. If not, it's output as colon-seperated hex. On
+ input, the option can be specified either as a quoted string or as
+ a colon-seperated hex list.
+ N - enumeration. N is followed by a text string containing
+ the name of the set of enumeration values to parse or emit,
+ followed by a '.'. The width of the data is specified in the
+ named enumeration. Named enumerations are tracked in parse.c.
*/
struct universe dhcp_universe;