summaryrefslogtreecommitdiff
path: root/includes/tree.h
diff options
context:
space:
mode:
authorDavid Hankins <dhankins@isc.org>2008-01-09 17:13:16 +0000
committerDavid Hankins <dhankins@isc.org>2008-01-09 17:13:16 +0000
commit2c9bf1f4bffa220606caf225b1d7612014aca73e (patch)
tree06e23a2f6af0bf387526de4990eda27ad9c8d5cb /includes/tree.h
parent2e630dfbce287a425ffc2c76e58d3d3206a8d003 (diff)
downloadisc-dhcp-2c9bf1f4bffa220606caf225b1d7612014aca73e.tar.gz
- The minimum site code value was set to 224 in 3.1.0 to track RFC3942. This
broke a lot of legacy site local configurations. The new code in place will track site local space minimum option codes and logs a warning to encourage updates and exploration of site local code migration problems. Option codes less than 128 in site local spaces remain inaccessible. [ISC-Bugs #17203] - A possible relay agent option bug was repaired where random server initialization state may have been used to signal the relay agent information options sub-option code for the 'END' of the option space. [ISC-Bugs #17203]
Diffstat (limited to 'includes/tree.h')
-rw-r--r--includes/tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/tree.h b/includes/tree.h
index ef8f3baf..2df11ceb 100644
--- a/includes/tree.h
+++ b/includes/tree.h
@@ -334,7 +334,7 @@ struct universe {
u_int32_t (*get_length) (const unsigned char *);
void (*store_length) PROTO ((unsigned char *, u_int32_t));
int tag_size, length_size;
- unsigned end;
+ unsigned site_code_min, end;
option_name_hash_t *name_hash;
option_code_hash_t *code_hash;
struct option *enc_opt;