summaryrefslogtreecommitdiff
path: root/keama/tests/optiondecl4.out
blob: 19c092bf9b91834f1e74bd315c0df24b8c195d06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
  # option definition config
  # authoritative is mandatory
  "Dhcp4": {
    "option-def": [
      # options
      {
        "space": "foobar",
        "name": "fmt-f",
        "code": 1,
        "type": "boolean"
      },
      {
        "space": "foobar",
        "name": "fmt-b-i8",
        "code": 2,
        "type": "int8"
      },
      {
        "space": "foobar",
        "name": "fmt-b-si8",
        "code": 3,
        "type": "int8"
      },
      {
        "space": "foobar",
        "name": "fmt-B-ui8",
        "code": 4,
        "type": "uint8"
      },
      {
        "space": "foobar",
        "name": "fmt-s-i16",
        "code": 5,
        "type": "int16"
      },
      {
        "space": "foobar",
        "name": "fmt-s-si16",
        "code": 6,
        "type": "int16"
      },
      {
        "space": "foobar",
        "name": "fmt-S-ui16",
        "code": 7,
        "type": "uint16"
      },
      {
        "space": "foobar",
        "name": "fmt-l-i32",
        "code": 8,
        "type": "int32"
      },
      {
        "space": "foobar",
        "name": "fmt-l-si32",
        "code": 9,
        "type": "int32"
      },
      {
        "space": "foobar",
        "name": "fmt-L-ui32",
        "code": 10,
        "type": "uint32"
      },
      {
        "space": "foobar",
        "name": "fmt-I",
        "code": 11,
        "type": "ipv4-address"
      },
      {
        "space": "foobar",
        "name": "fmt-6",
        "code": 12,
        "type": "ipv6-address"
      },
      {
        "space": "foobar",
        "name": "fmt-d",
        "code": 13,
        "type": "fqdn"
      },
      {
        "space": "foobar",
        "name": "fmt-D-list",
        "code": 14,
        "array": true,
        "type": "fqdn"
      },
      {
        "space": "foobar",
        "name": "fmt-Dc",
        "code": 15,
        "array": true,
        "type": "fqdn"
      },
      {
        "space": "foobar",
        "name": "fmt-t",
        "code": 16,
        "type": "string"
      },
      {
        "space": "foobar",
        "name": "fmt-X",
        "code": 17,
        "type": "string"
      },
      {
        "space": "foobar",
        "name": "fmt-Z",
        "code": 18,
        "type": "empty"
      },
      {
        "space": "foobar",
        "name": "fmt-Ba",
        "code": 50,
        "array": true,
        "type": "uint8"
      },
      {
        "space": "foobar",
        "name": "fmt-fB",
        "code": 100,
        "record-types": "boolean, uint8",
        "type": "record"
      }
//    /// unsupported array inside a record
//    {
//      "space": "foobar",
//      "name": "fmt-Ia",
//      "code": 150,
//      "array": true,
//      "record-types": "uint32, boolean",
//      "type": "record",
//      "definition": "[ uint32, array of boolean]"
//    }
    ]
  }
}