diff options
Diffstat (limited to 'keama/tests/optiondecl6.in6')
-rw-r--r-- | keama/tests/optiondecl6.in6 | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/keama/tests/optiondecl6.in6 b/keama/tests/optiondecl6.in6 new file mode 100644 index 00000000..37662c0d --- /dev/null +++ b/keama/tests/optiondecl6.in6 @@ -0,0 +1,27 @@ +# option definition config + +# options +option space foobar; + +option foobar.fmt-f code 1 = boolean; +option foobar.fmt-b-i8 code 2 = integer 8; +option foobar.fmt-b-si8 code 3 = signed integer 8; +option foobar.fmt-B-ui8 code 4 = unsigned integer 8; +option foobar.fmt-s-i16 code 5 = integer 16; +option foobar.fmt-s-si16 code 6 = signed integer 16; +option foobar.fmt-S-ui16 code 7 = unsigned integer 16; +option foobar.fmt-l-i32 code 8 = integer 32; +option foobar.fmt-l-si32 code 9 = signed integer 32; +option foobar.fmt-L-ui32 code 10 = unsigned integer 32; +option foobar.fmt-I code 11 = ip-address; +option foobar.fmt-6 code 12 = ip6-address; +option foobar.fmt-d code 13 = domain-name; +option foobar.fmt-D-list code 14 = domain-list; +#option foobar.fmt-Dc code 15 = domain-list compressed; +option foobar.fmt-t code 16 = text; +option foobar.fmt-X code 17 = string; +option foobar.fmt-Z code 18 = zerolen; + +option foobar.fmt-Ba code 50 = array of unsigned integer 8; +option foobar.fmt-fB code 100 = { boolean, unsigned integer 8 }; +option foobar.fmt-Lfa code 150 = { unsigned integer 32, array of boolean }; |