Home | History | Annotate | Line # | Download | only in tests
      1 # option definition config
      2 
      3 # options
      4 option space foobar;
      5 
      6 option foobar.fmt-f code 1 = boolean;
      7 option foobar.fmt-b-i8 code 2 = integer 8;
      8 option foobar.fmt-b-si8 code 3 = signed integer 8;
      9 option foobar.fmt-B-ui8 code 4 = unsigned integer 8;
     10 option foobar.fmt-s-i16 code 5 = integer 16;
     11 option foobar.fmt-s-si16 code 6 = signed integer 16;
     12 option foobar.fmt-S-ui16 code 7 = unsigned integer 16;
     13 option foobar.fmt-l-i32 code 8 = integer 32;
     14 option foobar.fmt-l-si32 code 9 = signed integer 32;
     15 option foobar.fmt-L-ui32 code 10 = unsigned integer 32;
     16 option foobar.fmt-I code 11 = ip-address;
     17 option foobar.fmt-6 code 12 = ip6-address;
     18 option foobar.fmt-d code 13 = domain-name;
     19 option foobar.fmt-D-list code 14 = domain-list;
     20 #option foobar.fmt-Dc code 15 = domain-list compressed;
     21 option foobar.fmt-t code 16 = text;
     22 option foobar.fmt-X code 17 = string;
     23 option foobar.fmt-Z code 18 = zerolen;
     24 
     25 option foobar.fmt-Ba code 50 = array of unsigned integer 8;
     26 option foobar.fmt-fB code 100 = { boolean, unsigned integer 8 };
     27 option foobar.fmt-Lfa code 150 = { unsigned integer 32, array of boolean };
     28