Blame view

net/netfilter/nf_conntrack_h323_types.c 87.8 KB
f361c4dc5   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-only
d05291868   Jing Min Zhao   [NETFILTER]: nf_c...
2
  /* Generated by Jing Min Zhao's ASN.1 parser, May 16 2007
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
3
4
   *
   * Copyright (c) 2006 Jing Min Zhao <zhaojingmin@users.sourceforge.net>
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
5
   */
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
6
  static const struct field_t _TransportAddress_ipAddress[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
7
8
9
10
  	{FNAME("ip") OCTSTR, FIXD, 4, 0, DECODE,
  	 offsetof(TransportAddress_ipAddress, ip), NULL},
  	{FNAME("port") INT, WORD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
11
  static const struct field_t _TransportAddress_ipSourceRoute_route[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
12
13
  	{FNAME("item") OCTSTR, FIXD, 4, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
14
  static const struct field_t _TransportAddress_ipSourceRoute_routing[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
15
16
17
  	{FNAME("strict") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("loose") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
18
  static const struct field_t _TransportAddress_ipSourceRoute[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
19
20
21
22
23
24
25
  	{FNAME("ip") OCTSTR, FIXD, 4, 0, SKIP, 0, NULL},
  	{FNAME("port") INT, WORD, 0, 0, SKIP, 0, NULL},
  	{FNAME("route") SEQOF, SEMI, 0, 0, SKIP, 0,
  	 _TransportAddress_ipSourceRoute_route},
  	{FNAME("routing") CHOICE, 1, 2, 2, SKIP | EXT, 0,
  	 _TransportAddress_ipSourceRoute_routing},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
26
  static const struct field_t _TransportAddress_ipxAddress[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
27
28
29
30
  	{FNAME("node") OCTSTR, FIXD, 6, 0, SKIP, 0, NULL},
  	{FNAME("netnum") OCTSTR, FIXD, 4, 0, SKIP, 0, NULL},
  	{FNAME("port") OCTSTR, FIXD, 2, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
31
  static const struct field_t _TransportAddress_ip6Address[] = {	/* SEQUENCE */
f587de0e2   Patrick McHardy   [NETFILTER]: nf_c...
32
  	{FNAME("ip") OCTSTR, FIXD, 16, 0, DECODE,
d05291868   Jing Min Zhao   [NETFILTER]: nf_c...
33
  	 offsetof(TransportAddress_ip6Address, ip), NULL},
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
34
35
  	{FNAME("port") INT, WORD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
36
  static const struct field_t _H221NonStandard[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
37
38
39
40
  	{FNAME("t35CountryCode") INT, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("t35Extension") INT, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("manufacturerCode") INT, WORD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
41
  static const struct field_t _NonStandardIdentifier[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
42
43
44
45
  	{FNAME("object") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("h221NonStandard") SEQ, 0, 3, 3, SKIP | EXT, 0,
  	 _H221NonStandard},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
46
  static const struct field_t _NonStandardParameter[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
47
48
49
50
  	{FNAME("nonStandardIdentifier") CHOICE, 1, 2, 2, SKIP | EXT, 0,
  	 _NonStandardIdentifier},
  	{FNAME("data") OCTSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
51
  static const struct field_t _TransportAddress[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
52
53
54
55
56
57
  	{FNAME("ipAddress") SEQ, 0, 2, 2, DECODE,
  	 offsetof(TransportAddress, ipAddress), _TransportAddress_ipAddress},
  	{FNAME("ipSourceRoute") SEQ, 0, 4, 4, SKIP | EXT, 0,
  	 _TransportAddress_ipSourceRoute},
  	{FNAME("ipxAddress") SEQ, 0, 3, 3, SKIP, 0,
  	 _TransportAddress_ipxAddress},
f587de0e2   Patrick McHardy   [NETFILTER]: nf_c...
58
  	{FNAME("ip6Address") SEQ, 0, 2, 2, DECODE | EXT,
d05291868   Jing Min Zhao   [NETFILTER]: nf_c...
59
60
  	 offsetof(TransportAddress, ip6Address),
  	 _TransportAddress_ip6Address},
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
61
62
63
64
65
  	{FNAME("netBios") OCTSTR, FIXD, 16, 0, SKIP, 0, NULL},
  	{FNAME("nsap") OCTSTR, 5, 1, 0, SKIP, 0, NULL},
  	{FNAME("nonStandardAddress") SEQ, 0, 2, 2, SKIP, 0,
  	 _NonStandardParameter},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
66
  static const struct field_t _AliasAddress[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
67
68
69
70
71
72
73
74
  	{FNAME("dialedDigits") NUMDGT, 7, 1, 0, SKIP, 0, NULL},
  	{FNAME("h323-ID") BMPSTR, BYTE, 1, 0, SKIP, 0, NULL},
  	{FNAME("url-ID") IA5STR, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("transportID") CHOICE, 3, 7, 7, SKIP | EXT, 0, NULL},
  	{FNAME("email-ID") IA5STR, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("partyNumber") CHOICE, 3, 5, 5, SKIP | EXT, 0, NULL},
  	{FNAME("mobileUIM") CHOICE, 1, 2, 2, SKIP | EXT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
75
  static const struct field_t _Setup_UUIE_sourceAddress[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
76
77
  	{FNAME("item") CHOICE, 1, 2, 7, SKIP | EXT, 0, _AliasAddress},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
78
  static const struct field_t _VendorIdentifier[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
79
80
81
82
  	{FNAME("vendor") SEQ, 0, 3, 3, SKIP | EXT, 0, _H221NonStandard},
  	{FNAME("productId") OCTSTR, BYTE, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("versionId") OCTSTR, BYTE, 1, 0, SKIP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
83
  static const struct field_t _GatekeeperInfo[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
84
85
86
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
87
  static const struct field_t _H310Caps[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
88
89
90
91
92
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("dataRatesSupported") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("supportedPrefixes") SEQOF, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
93
  static const struct field_t _H320Caps[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
94
95
96
97
98
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("dataRatesSupported") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("supportedPrefixes") SEQOF, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
99
  static const struct field_t _H321Caps[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
100
101
102
103
104
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("dataRatesSupported") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("supportedPrefixes") SEQOF, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
105
  static const struct field_t _H322Caps[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
106
107
108
109
110
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("dataRatesSupported") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("supportedPrefixes") SEQOF, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
111
  static const struct field_t _H323Caps[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
112
113
114
115
116
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("dataRatesSupported") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("supportedPrefixes") SEQOF, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
117
  static const struct field_t _H324Caps[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
118
119
120
121
122
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("dataRatesSupported") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("supportedPrefixes") SEQOF, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
123
  static const struct field_t _VoiceCaps[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
124
125
126
127
128
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("dataRatesSupported") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("supportedPrefixes") SEQOF, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
129
  static const struct field_t _T120OnlyCaps[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
130
131
132
133
134
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("dataRatesSupported") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("supportedPrefixes") SEQOF, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
135
  static const struct field_t _SupportedProtocols[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
136
137
138
139
140
141
142
143
144
145
146
147
148
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP, 0,
  	 _NonStandardParameter},
  	{FNAME("h310") SEQ, 1, 1, 3, SKIP | EXT, 0, _H310Caps},
  	{FNAME("h320") SEQ, 1, 1, 3, SKIP | EXT, 0, _H320Caps},
  	{FNAME("h321") SEQ, 1, 1, 3, SKIP | EXT, 0, _H321Caps},
  	{FNAME("h322") SEQ, 1, 1, 3, SKIP | EXT, 0, _H322Caps},
  	{FNAME("h323") SEQ, 1, 1, 3, SKIP | EXT, 0, _H323Caps},
  	{FNAME("h324") SEQ, 1, 1, 3, SKIP | EXT, 0, _H324Caps},
  	{FNAME("voice") SEQ, 1, 1, 3, SKIP | EXT, 0, _VoiceCaps},
  	{FNAME("t120-only") SEQ, 1, 1, 3, SKIP | EXT, 0, _T120OnlyCaps},
  	{FNAME("nonStandardProtocol") SEQ, 2, 3, 3, SKIP | EXT, 0, NULL},
  	{FNAME("t38FaxAnnexbOnly") SEQ, 2, 5, 5, SKIP | EXT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
149
  static const struct field_t _GatewayInfo_protocol[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
150
151
  	{FNAME("item") CHOICE, 4, 9, 11, SKIP | EXT, 0, _SupportedProtocols},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
152
  static const struct field_t _GatewayInfo[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
153
154
155
156
157
  	{FNAME("protocol") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 _GatewayInfo_protocol},
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
158
  static const struct field_t _McuInfo[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
159
160
161
162
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("protocol") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
163
  static const struct field_t _TerminalInfo[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
164
165
166
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
167
  static const struct field_t _EndpointType[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("vendor") SEQ, 2, 3, 3, SKIP | EXT | OPT, 0,
  	 _VendorIdentifier},
  	{FNAME("gatekeeper") SEQ, 1, 1, 1, SKIP | EXT | OPT, 0,
  	 _GatekeeperInfo},
  	{FNAME("gateway") SEQ, 2, 2, 2, SKIP | EXT | OPT, 0, _GatewayInfo},
  	{FNAME("mcu") SEQ, 1, 1, 2, SKIP | EXT | OPT, 0, _McuInfo},
  	{FNAME("terminal") SEQ, 1, 1, 1, SKIP | EXT | OPT, 0, _TerminalInfo},
  	{FNAME("mc") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("undefinedNode") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("set") BITSTR, FIXD, 32, 0, SKIP | OPT, 0, NULL},
  	{FNAME("supportedTunnelledProtocols") SEQOF, SEMI, 0, 0, SKIP | OPT,
  	 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
183
  static const struct field_t _Setup_UUIE_destinationAddress[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
184
185
  	{FNAME("item") CHOICE, 1, 2, 7, SKIP | EXT, 0, _AliasAddress},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
186
  static const struct field_t _Setup_UUIE_destExtraCallInfo[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
187
188
  	{FNAME("item") CHOICE, 1, 2, 7, SKIP | EXT, 0, _AliasAddress},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
189
  static const struct field_t _Setup_UUIE_destExtraCRV[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
190
191
  	{FNAME("item") INT, WORD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
192
  static const struct field_t _Setup_UUIE_conferenceGoal[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
193
194
195
196
197
198
199
  	{FNAME("create") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("join") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("invite") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("capability-negotiation") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("callIndependentSupplementaryService") NUL, FIXD, 0, 0, SKIP,
  	 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
200
  static const struct field_t _Q954Details[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
201
202
203
  	{FNAME("conferenceCalling") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("threePartyService") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
204
  static const struct field_t _QseriesOptions[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
205
206
207
208
209
210
211
212
213
  	{FNAME("q932Full") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("q951Full") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("q952Full") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("q953Full") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("q955Full") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("q956Full") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("q957Full") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("q954Info") SEQ, 0, 2, 2, SKIP | EXT, 0, _Q954Details},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
214
  static const struct field_t _CallType[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
215
216
217
218
219
  	{FNAME("pointToPoint") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("oneToN") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("nToOne") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("nToN") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
220
  static const struct field_t _H245_NonStandardIdentifier_h221NonStandard[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
221
222
223
224
  	{FNAME("t35CountryCode") INT, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("t35Extension") INT, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("manufacturerCode") INT, WORD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
225
  static const struct field_t _H245_NonStandardIdentifier[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
226
227
228
229
  	{FNAME("object") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("h221NonStandard") SEQ, 0, 3, 3, SKIP, 0,
  	 _H245_NonStandardIdentifier_h221NonStandard},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
230
  static const struct field_t _H245_NonStandardParameter[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
231
232
233
234
  	{FNAME("nonStandardIdentifier") CHOICE, 1, 2, 2, SKIP, 0,
  	 _H245_NonStandardIdentifier},
  	{FNAME("data") OCTSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
235
  static const struct field_t _H261VideoCapability[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
236
237
238
239
240
241
242
243
  	{FNAME("qcifMPI") INT, 2, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("cifMPI") INT, 2, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("temporalSpatialTradeOffCapability") BOOL, FIXD, 0, 0, SKIP, 0,
  	 NULL},
  	{FNAME("maxBitRate") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("stillImageTransmission") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("videoBadMBsCap") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
244
  static const struct field_t _H262VideoCapability[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
  	{FNAME("profileAndLevel-SPatML") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("profileAndLevel-MPatLL") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("profileAndLevel-MPatML") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("profileAndLevel-MPatH-14") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("profileAndLevel-MPatHL") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("profileAndLevel-SNRatLL") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("profileAndLevel-SNRatML") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("profileAndLevel-SpatialatH-14") BOOL, FIXD, 0, 0, SKIP, 0,
  	 NULL},
  	{FNAME("profileAndLevel-HPatML") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("profileAndLevel-HPatH-14") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("profileAndLevel-HPatHL") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("videoBitRate") INT, CONS, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("vbvBufferSize") INT, CONS, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("samplesPerLine") INT, WORD, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("linesPerFrame") INT, WORD, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("framesPerSecond") INT, 4, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("luminanceSampleRate") INT, CONS, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("videoBadMBsCap") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
265
  static const struct field_t _H263VideoCapability[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
  	{FNAME("sqcifMPI") INT, 5, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("qcifMPI") INT, 5, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("cifMPI") INT, 5, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("cif4MPI") INT, 5, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("cif16MPI") INT, 5, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("maxBitRate") INT, CONS, 1, 0, SKIP, 0, NULL},
  	{FNAME("unrestrictedVector") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("arithmeticCoding") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("advancedPrediction") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("pbFrames") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("temporalSpatialTradeOffCapability") BOOL, FIXD, 0, 0, SKIP, 0,
  	 NULL},
  	{FNAME("hrd-B") INT, CONS, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("bppMaxKb") INT, WORD, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("slowSqcifMPI") INT, WORD, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("slowQcifMPI") INT, WORD, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("slowCifMPI") INT, WORD, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("slowCif4MPI") INT, WORD, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("slowCif16MPI") INT, WORD, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("errorCompensation") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("enhancementLayerInfo") SEQ, 3, 4, 4, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("h263Options") SEQ, 5, 29, 31, SKIP | EXT | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
290
  static const struct field_t _IS11172VideoCapability[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
291
292
293
294
295
296
297
298
299
  	{FNAME("constrainedBitstream") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("videoBitRate") INT, CONS, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("vbvBufferSize") INT, CONS, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("samplesPerLine") INT, WORD, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("linesPerFrame") INT, WORD, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("pictureRate") INT, 4, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("luminanceSampleRate") INT, CONS, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("videoBadMBsCap") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
300
  static const struct field_t _VideoCapability[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
301
302
303
304
305
306
307
308
309
310
311
312
  	{FNAME("nonStandard") SEQ, 0, 2, 2, SKIP, 0,
  	 _H245_NonStandardParameter},
  	{FNAME("h261VideoCapability") SEQ, 2, 5, 6, SKIP | EXT, 0,
  	 _H261VideoCapability},
  	{FNAME("h262VideoCapability") SEQ, 6, 17, 18, SKIP | EXT, 0,
  	 _H262VideoCapability},
  	{FNAME("h263VideoCapability") SEQ, 7, 13, 21, SKIP | EXT, 0,
  	 _H263VideoCapability},
  	{FNAME("is11172VideoCapability") SEQ, 6, 7, 8, SKIP | EXT, 0,
  	 _IS11172VideoCapability},
  	{FNAME("genericVideoCapability") SEQ, 5, 6, 6, SKIP | EXT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
313
  static const struct field_t _AudioCapability_g7231[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
314
315
316
  	{FNAME("maxAl-sduAudioFrames") INT, BYTE, 1, 0, SKIP, 0, NULL},
  	{FNAME("silenceSuppression") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
317
  static const struct field_t _IS11172AudioCapability[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
318
319
320
321
322
323
324
325
326
327
  	{FNAME("audioLayer1") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("audioLayer2") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("audioLayer3") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("audioSampling32k") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("audioSampling44k1") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("audioSampling48k") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("singleChannel") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("twoChannels") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("bitRate") INT, WORD, 1, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
328
  static const struct field_t _IS13818AudioCapability[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
  	{FNAME("audioLayer1") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("audioLayer2") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("audioLayer3") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("audioSampling16k") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("audioSampling22k05") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("audioSampling24k") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("audioSampling32k") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("audioSampling44k1") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("audioSampling48k") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("singleChannel") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("twoChannels") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("threeChannels2-1") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("threeChannels3-0") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("fourChannels2-0-2-0") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("fourChannels2-2") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("fourChannels3-1") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("fiveChannels3-0-2-0") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("fiveChannels3-2") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("lowFrequencyEnhancement") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("multilingual") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("bitRate") INT, WORD, 1, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
351
  static const struct field_t _AudioCapability[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
  	{FNAME("nonStandard") SEQ, 0, 2, 2, SKIP, 0,
  	 _H245_NonStandardParameter},
  	{FNAME("g711Alaw64k") INT, BYTE, 1, 0, SKIP, 0, NULL},
  	{FNAME("g711Alaw56k") INT, BYTE, 1, 0, SKIP, 0, NULL},
  	{FNAME("g711Ulaw64k") INT, BYTE, 1, 0, SKIP, 0, NULL},
  	{FNAME("g711Ulaw56k") INT, BYTE, 1, 0, SKIP, 0, NULL},
  	{FNAME("g722-64k") INT, BYTE, 1, 0, SKIP, 0, NULL},
  	{FNAME("g722-56k") INT, BYTE, 1, 0, SKIP, 0, NULL},
  	{FNAME("g722-48k") INT, BYTE, 1, 0, SKIP, 0, NULL},
  	{FNAME("g7231") SEQ, 0, 2, 2, SKIP, 0, _AudioCapability_g7231},
  	{FNAME("g728") INT, BYTE, 1, 0, SKIP, 0, NULL},
  	{FNAME("g729") INT, BYTE, 1, 0, SKIP, 0, NULL},
  	{FNAME("g729AnnexA") INT, BYTE, 1, 0, SKIP, 0, NULL},
  	{FNAME("is11172AudioCapability") SEQ, 0, 9, 9, SKIP | EXT, 0,
  	 _IS11172AudioCapability},
  	{FNAME("is13818AudioCapability") SEQ, 0, 21, 21, SKIP | EXT, 0,
  	 _IS13818AudioCapability},
  	{FNAME("g729wAnnexB") INT, BYTE, 1, 0, SKIP, 0, NULL},
  	{FNAME("g729AnnexAwAnnexB") INT, BYTE, 1, 0, SKIP, 0, NULL},
  	{FNAME("g7231AnnexCCapability") SEQ, 1, 3, 3, SKIP | EXT, 0, NULL},
  	{FNAME("gsmFullRate") SEQ, 0, 3, 3, SKIP | EXT, 0, NULL},
  	{FNAME("gsmHalfRate") SEQ, 0, 3, 3, SKIP | EXT, 0, NULL},
  	{FNAME("gsmEnhancedFullRate") SEQ, 0, 3, 3, SKIP | EXT, 0, NULL},
  	{FNAME("genericAudioCapability") SEQ, 5, 6, 6, SKIP | EXT, 0, NULL},
  	{FNAME("g729Extensions") SEQ, 1, 8, 8, SKIP | EXT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
378
  static const struct field_t _DataProtocolCapability[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
  	{FNAME("nonStandard") SEQ, 0, 2, 2, SKIP, 0,
  	 _H245_NonStandardParameter},
  	{FNAME("v14buffered") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("v42lapm") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("hdlcFrameTunnelling") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("h310SeparateVCStack") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("h310SingleVCStack") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("transparent") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("segmentationAndReassembly") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("hdlcFrameTunnelingwSAR") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("v120") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("separateLANStack") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("v76wCompression") CHOICE, 2, 3, 3, SKIP | EXT, 0, NULL},
  	{FNAME("tcp") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("udp") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
395
  static const struct field_t _T84Profile_t84Restricted[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
  	{FNAME("qcif") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("cif") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("ccir601Seq") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("ccir601Prog") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("hdtvSeq") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("hdtvProg") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("g3FacsMH200x100") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("g3FacsMH200x200") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("g4FacsMMR200x100") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("g4FacsMMR200x200") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("jbig200x200Seq") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("jbig200x200Prog") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("jbig300x300Seq") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("jbig300x300Prog") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("digPhotoLow") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("digPhotoMedSeq") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("digPhotoMedProg") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("digPhotoHighSeq") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("digPhotoHighProg") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
416
  static const struct field_t _T84Profile[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
417
418
419
420
  	{FNAME("t84Unrestricted") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("t84Restricted") SEQ, 0, 19, 19, SKIP | EXT, 0,
  	 _T84Profile_t84Restricted},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
421
  static const struct field_t _DataApplicationCapability_application_t84[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
422
423
424
425
  	{FNAME("t84Protocol") CHOICE, 3, 7, 14, SKIP | EXT, 0,
  	 _DataProtocolCapability},
  	{FNAME("t84Profile") CHOICE, 1, 2, 2, SKIP, 0, _T84Profile},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
426
  static const struct field_t _DataApplicationCapability_application_nlpid[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
427
428
429
430
  	{FNAME("nlpidProtocol") CHOICE, 3, 7, 14, SKIP | EXT, 0,
  	 _DataProtocolCapability},
  	{FNAME("nlpidData") OCTSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
431
  static const struct field_t _DataApplicationCapability_application[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
  	{FNAME("nonStandard") SEQ, 0, 2, 2, SKIP, 0,
  	 _H245_NonStandardParameter},
  	{FNAME("t120") CHOICE, 3, 7, 14, DECODE | EXT,
  	 offsetof(DataApplicationCapability_application, t120),
  	 _DataProtocolCapability},
  	{FNAME("dsm-cc") CHOICE, 3, 7, 14, SKIP | EXT, 0,
  	 _DataProtocolCapability},
  	{FNAME("userData") CHOICE, 3, 7, 14, SKIP | EXT, 0,
  	 _DataProtocolCapability},
  	{FNAME("t84") SEQ, 0, 2, 2, SKIP, 0,
  	 _DataApplicationCapability_application_t84},
  	{FNAME("t434") CHOICE, 3, 7, 14, SKIP | EXT, 0,
  	 _DataProtocolCapability},
  	{FNAME("h224") CHOICE, 3, 7, 14, SKIP | EXT, 0,
  	 _DataProtocolCapability},
  	{FNAME("nlpid") SEQ, 0, 2, 2, SKIP, 0,
  	 _DataApplicationCapability_application_nlpid},
  	{FNAME("dsvdControl") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("h222DataPartitioning") CHOICE, 3, 7, 14, SKIP | EXT, 0,
  	 _DataProtocolCapability},
  	{FNAME("t30fax") CHOICE, 3, 7, 14, SKIP | EXT, 0, NULL},
  	{FNAME("t140") CHOICE, 3, 7, 14, SKIP | EXT, 0, NULL},
  	{FNAME("t38fax") SEQ, 0, 2, 2, SKIP, 0, NULL},
  	{FNAME("genericDataCapability") SEQ, 5, 6, 6, SKIP | EXT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
457
  static const struct field_t _DataApplicationCapability[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
458
459
460
461
462
  	{FNAME("application") CHOICE, 4, 10, 14, DECODE | EXT,
  	 offsetof(DataApplicationCapability, application),
  	 _DataApplicationCapability_application},
  	{FNAME("maxBitRate") INT, CONS, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
463
  static const struct field_t _EncryptionMode[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
464
465
466
467
  	{FNAME("nonStandard") SEQ, 0, 2, 2, SKIP, 0,
  	 _H245_NonStandardParameter},
  	{FNAME("h233Encryption") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
468
  static const struct field_t _DataType[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
469
470
471
472
473
474
475
476
477
478
479
480
481
482
  	{FNAME("nonStandard") SEQ, 0, 2, 2, SKIP, 0,
  	 _H245_NonStandardParameter},
  	{FNAME("nullData") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("videoData") CHOICE, 3, 5, 6, SKIP | EXT, 0, _VideoCapability},
  	{FNAME("audioData") CHOICE, 4, 14, 22, SKIP | EXT, 0,
  	 _AudioCapability},
  	{FNAME("data") SEQ, 0, 2, 2, DECODE | EXT, offsetof(DataType, data),
  	 _DataApplicationCapability},
  	{FNAME("encryptionData") CHOICE, 1, 2, 2, SKIP | EXT, 0,
  	 _EncryptionMode},
  	{FNAME("h235Control") SEQ, 0, 2, 2, SKIP, 0, NULL},
  	{FNAME("h235Media") SEQ, 0, 2, 2, SKIP | EXT, 0, NULL},
  	{FNAME("multiplexedStream") SEQ, 0, 2, 2, SKIP | EXT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
483
  static const struct field_t _H222LogicalChannelParameters[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
484
485
486
487
488
489
  	{FNAME("resourceID") INT, WORD, 0, 0, SKIP, 0, NULL},
  	{FNAME("subChannelID") INT, WORD, 0, 0, SKIP, 0, NULL},
  	{FNAME("pcr-pid") INT, WORD, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("programDescriptors") OCTSTR, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("streamDescriptors") OCTSTR, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
490
  static const struct field_t _H223LogicalChannelParameters_adaptationLayerType_al3[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
491
492
493
  	{FNAME("controlFieldOctets") INT, 2, 0, 0, SKIP, 0, NULL},
  	{FNAME("sendBufferSize") INT, CONS, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
494
  static const struct field_t _H223LogicalChannelParameters_adaptationLayerType[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
495
496
497
498
499
500
501
502
503
504
505
506
  	{FNAME("nonStandard") SEQ, 0, 2, 2, SKIP, 0,
  	 _H245_NonStandardParameter},
  	{FNAME("al1Framed") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("al1NotFramed") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("al2WithoutSequenceNumbers") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("al2WithSequenceNumbers") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("al3") SEQ, 0, 2, 2, SKIP, 0,
  	 _H223LogicalChannelParameters_adaptationLayerType_al3},
  	{FNAME("al1M") SEQ, 0, 7, 8, SKIP | EXT, 0, NULL},
  	{FNAME("al2M") SEQ, 0, 2, 2, SKIP | EXT, 0, NULL},
  	{FNAME("al3M") SEQ, 0, 5, 6, SKIP | EXT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
507
  static const struct field_t _H223LogicalChannelParameters[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
508
509
510
511
  	{FNAME("adaptationLayerType") CHOICE, 3, 6, 9, SKIP | EXT, 0,
  	 _H223LogicalChannelParameters_adaptationLayerType},
  	{FNAME("segmentableFlag") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
512
  static const struct field_t _CRCLength[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
513
514
515
516
  	{FNAME("crc8bit") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("crc16bit") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("crc32bit") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
517
  static const struct field_t _V76HDLCParameters[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
518
519
520
521
  	{FNAME("crcLength") CHOICE, 2, 3, 3, SKIP | EXT, 0, _CRCLength},
  	{FNAME("n401") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("loopbackTestProcedure") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
522
  static const struct field_t _V76LogicalChannelParameters_suspendResume[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
523
524
525
526
  	{FNAME("noSuspendResume") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("suspendResumewAddress") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("suspendResumewoAddress") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
527
  static const struct field_t _V76LogicalChannelParameters_mode_eRM_recovery[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
528
529
530
531
  	{FNAME("rej") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("sREJ") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("mSREJ") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
532
  static const struct field_t _V76LogicalChannelParameters_mode_eRM[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
533
534
535
536
  	{FNAME("windowSize") INT, 7, 1, 0, SKIP, 0, NULL},
  	{FNAME("recovery") CHOICE, 2, 3, 3, SKIP | EXT, 0,
  	 _V76LogicalChannelParameters_mode_eRM_recovery},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
537
  static const struct field_t _V76LogicalChannelParameters_mode[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
538
539
540
541
  	{FNAME("eRM") SEQ, 0, 2, 2, SKIP | EXT, 0,
  	 _V76LogicalChannelParameters_mode_eRM},
  	{FNAME("uNERM") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
542
  static const struct field_t _V75Parameters[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
543
544
  	{FNAME("audioHeaderPresent") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
545
  static const struct field_t _V76LogicalChannelParameters[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
546
547
548
549
550
551
552
553
554
  	{FNAME("hdlcParameters") SEQ, 0, 3, 3, SKIP | EXT, 0,
  	 _V76HDLCParameters},
  	{FNAME("suspendResume") CHOICE, 2, 3, 3, SKIP | EXT, 0,
  	 _V76LogicalChannelParameters_suspendResume},
  	{FNAME("uIH") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("mode") CHOICE, 1, 2, 2, SKIP | EXT, 0,
  	 _V76LogicalChannelParameters_mode},
  	{FNAME("v75Parameters") SEQ, 0, 1, 1, SKIP | EXT, 0, _V75Parameters},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
555
  static const struct field_t _H2250LogicalChannelParameters_nonStandard[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
556
557
  	{FNAME("item") SEQ, 0, 2, 2, SKIP, 0, _H245_NonStandardParameter},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
558
  static const struct field_t _UnicastAddress_iPAddress[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
559
560
561
562
  	{FNAME("network") OCTSTR, FIXD, 4, 0, DECODE,
  	 offsetof(UnicastAddress_iPAddress, network), NULL},
  	{FNAME("tsapIdentifier") INT, WORD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
563
  static const struct field_t _UnicastAddress_iPXAddress[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
564
565
566
567
  	{FNAME("node") OCTSTR, FIXD, 6, 0, SKIP, 0, NULL},
  	{FNAME("netnum") OCTSTR, FIXD, 4, 0, SKIP, 0, NULL},
  	{FNAME("tsapIdentifier") OCTSTR, FIXD, 2, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
568
  static const struct field_t _UnicastAddress_iP6Address[] = {	/* SEQUENCE */
d05291868   Jing Min Zhao   [NETFILTER]: nf_c...
569
570
  	{FNAME("network") OCTSTR, FIXD, 16, 0, DECODE,
  	 offsetof(UnicastAddress_iP6Address, network), NULL},
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
571
572
  	{FNAME("tsapIdentifier") INT, WORD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
573
  static const struct field_t _UnicastAddress_iPSourceRouteAddress_routing[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
574
575
576
  	{FNAME("strict") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("loose") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
577
  static const struct field_t _UnicastAddress_iPSourceRouteAddress_route[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
578
579
  	{FNAME("item") OCTSTR, FIXD, 4, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
580
  static const struct field_t _UnicastAddress_iPSourceRouteAddress[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
581
582
583
584
585
586
587
  	{FNAME("routing") CHOICE, 1, 2, 2, SKIP, 0,
  	 _UnicastAddress_iPSourceRouteAddress_routing},
  	{FNAME("network") OCTSTR, FIXD, 4, 0, SKIP, 0, NULL},
  	{FNAME("tsapIdentifier") INT, WORD, 0, 0, SKIP, 0, NULL},
  	{FNAME("route") SEQOF, SEMI, 0, 0, SKIP, 0,
  	 _UnicastAddress_iPSourceRouteAddress_route},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
588
  static const struct field_t _UnicastAddress[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
589
590
591
592
  	{FNAME("iPAddress") SEQ, 0, 2, 2, DECODE | EXT,
  	 offsetof(UnicastAddress, iPAddress), _UnicastAddress_iPAddress},
  	{FNAME("iPXAddress") SEQ, 0, 3, 3, SKIP | EXT, 0,
  	 _UnicastAddress_iPXAddress},
d05291868   Jing Min Zhao   [NETFILTER]: nf_c...
593
594
  	{FNAME("iP6Address") SEQ, 0, 2, 2, DECODE | EXT,
  	 offsetof(UnicastAddress, iP6Address), _UnicastAddress_iP6Address},
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
595
596
597
598
599
600
  	{FNAME("netBios") OCTSTR, FIXD, 16, 0, SKIP, 0, NULL},
  	{FNAME("iPSourceRouteAddress") SEQ, 0, 4, 4, SKIP | EXT, 0,
  	 _UnicastAddress_iPSourceRouteAddress},
  	{FNAME("nsap") OCTSTR, 5, 1, 0, SKIP, 0, NULL},
  	{FNAME("nonStandardAddress") SEQ, 0, 2, 2, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
601
  static const struct field_t _MulticastAddress_iPAddress[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
602
603
604
  	{FNAME("network") OCTSTR, FIXD, 4, 0, SKIP, 0, NULL},
  	{FNAME("tsapIdentifier") INT, WORD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
605
  static const struct field_t _MulticastAddress_iP6Address[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
606
607
608
  	{FNAME("network") OCTSTR, FIXD, 16, 0, SKIP, 0, NULL},
  	{FNAME("tsapIdentifier") INT, WORD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
609
  static const struct field_t _MulticastAddress[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
610
611
612
613
614
615
616
  	{FNAME("iPAddress") SEQ, 0, 2, 2, SKIP | EXT, 0,
  	 _MulticastAddress_iPAddress},
  	{FNAME("iP6Address") SEQ, 0, 2, 2, SKIP | EXT, 0,
  	 _MulticastAddress_iP6Address},
  	{FNAME("nsap") OCTSTR, 5, 1, 0, SKIP, 0, NULL},
  	{FNAME("nonStandardAddress") SEQ, 0, 2, 2, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
617
  static const struct field_t _H245_TransportAddress[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
618
619
620
621
622
  	{FNAME("unicastAddress") CHOICE, 3, 5, 7, DECODE | EXT,
  	 offsetof(H245_TransportAddress, unicastAddress), _UnicastAddress},
  	{FNAME("multicastAddress") CHOICE, 1, 2, 4, SKIP | EXT, 0,
  	 _MulticastAddress},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
623
  static const struct field_t _H2250LogicalChannelParameters[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
  	{FNAME("nonStandard") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 _H2250LogicalChannelParameters_nonStandard},
  	{FNAME("sessionID") INT, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("associatedSessionID") INT, 8, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("mediaChannel") CHOICE, 1, 2, 2, DECODE | EXT | OPT,
  	 offsetof(H2250LogicalChannelParameters, mediaChannel),
  	 _H245_TransportAddress},
  	{FNAME("mediaGuaranteedDelivery") BOOL, FIXD, 0, 0, SKIP | OPT, 0,
  	 NULL},
  	{FNAME("mediaControlChannel") CHOICE, 1, 2, 2, DECODE | EXT | OPT,
  	 offsetof(H2250LogicalChannelParameters, mediaControlChannel),
  	 _H245_TransportAddress},
  	{FNAME("mediaControlGuaranteedDelivery") BOOL, FIXD, 0, 0, STOP | OPT,
  	 0, NULL},
  	{FNAME("silenceSuppression") BOOL, FIXD, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("destination") SEQ, 0, 2, 2, STOP | EXT | OPT, 0, NULL},
  	{FNAME("dynamicRTPPayloadType") INT, 5, 96, 0, STOP | OPT, 0, NULL},
  	{FNAME("mediaPacketization") CHOICE, 0, 1, 2, STOP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("transportCapability") SEQ, 3, 3, 3, STOP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("redundancyEncoding") SEQ, 1, 2, 2, STOP | EXT | OPT, 0, NULL},
  	{FNAME("source") SEQ, 0, 2, 2, SKIP | EXT | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
648
  static const struct field_t _OpenLogicalChannel_forwardLogicalChannelParameters_multiplexParameters[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
649
650
651
652
653
654
655
656
657
658
659
660
  	{FNAME("h222LogicalChannelParameters") SEQ, 3, 5, 5, SKIP | EXT, 0,
  	 _H222LogicalChannelParameters},
  	{FNAME("h223LogicalChannelParameters") SEQ, 0, 2, 2, SKIP | EXT, 0,
  	 _H223LogicalChannelParameters},
  	{FNAME("v76LogicalChannelParameters") SEQ, 0, 5, 5, SKIP | EXT, 0,
  	 _V76LogicalChannelParameters},
  	{FNAME("h2250LogicalChannelParameters") SEQ, 10, 11, 14, DECODE | EXT,
  	 offsetof
  	 (OpenLogicalChannel_forwardLogicalChannelParameters_multiplexParameters,
  	  h2250LogicalChannelParameters), _H2250LogicalChannelParameters},
  	{FNAME("none") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
661
  static const struct field_t _OpenLogicalChannel_forwardLogicalChannelParameters[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
662
663
664
665
666
667
668
669
670
671
672
673
  	{FNAME("portNumber") INT, WORD, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("dataType") CHOICE, 3, 6, 9, DECODE | EXT,
  	 offsetof(OpenLogicalChannel_forwardLogicalChannelParameters,
  		  dataType), _DataType},
  	{FNAME("multiplexParameters") CHOICE, 2, 3, 5, DECODE | EXT,
  	 offsetof(OpenLogicalChannel_forwardLogicalChannelParameters,
  		  multiplexParameters),
  	 _OpenLogicalChannel_forwardLogicalChannelParameters_multiplexParameters},
  	{FNAME("forwardLogicalChannelDependency") INT, WORD, 1, 0, SKIP | OPT,
  	 0, NULL},
  	{FNAME("replacementFor") INT, WORD, 1, 0, SKIP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
674
  static const struct field_t _OpenLogicalChannel_reverseLogicalChannelParameters_multiplexParameters[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
675
676
677
678
679
680
681
682
683
  	{FNAME("h223LogicalChannelParameters") SEQ, 0, 2, 2, SKIP | EXT, 0,
  	 _H223LogicalChannelParameters},
  	{FNAME("v76LogicalChannelParameters") SEQ, 0, 5, 5, SKIP | EXT, 0,
  	 _V76LogicalChannelParameters},
  	{FNAME("h2250LogicalChannelParameters") SEQ, 10, 11, 14, DECODE | EXT,
  	 offsetof
  	 (OpenLogicalChannel_reverseLogicalChannelParameters_multiplexParameters,
  	  h2250LogicalChannelParameters), _H2250LogicalChannelParameters},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
684
  static const struct field_t _OpenLogicalChannel_reverseLogicalChannelParameters[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
685
686
687
688
689
690
691
692
693
  	{FNAME("dataType") CHOICE, 3, 6, 9, SKIP | EXT, 0, _DataType},
  	{FNAME("multiplexParameters") CHOICE, 1, 2, 3, DECODE | EXT | OPT,
  	 offsetof(OpenLogicalChannel_reverseLogicalChannelParameters,
  		  multiplexParameters),
  	 _OpenLogicalChannel_reverseLogicalChannelParameters_multiplexParameters},
  	{FNAME("reverseLogicalChannelDependency") INT, WORD, 1, 0, SKIP | OPT,
  	 0, NULL},
  	{FNAME("replacementFor") INT, WORD, 1, 0, SKIP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
694
  static const struct field_t _NetworkAccessParameters_distribution[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
695
696
697
  	{FNAME("unicast") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("multicast") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
698
  static const struct field_t _Q2931Address_address[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
699
700
701
  	{FNAME("internationalNumber") NUMSTR, 4, 1, 0, SKIP, 0, NULL},
  	{FNAME("nsapAddress") OCTSTR, 5, 1, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
702
  static const struct field_t _Q2931Address[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
703
704
705
706
  	{FNAME("address") CHOICE, 1, 2, 2, SKIP | EXT, 0,
  	 _Q2931Address_address},
  	{FNAME("subaddress") OCTSTR, 5, 1, 0, SKIP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
707
  static const struct field_t _NetworkAccessParameters_networkAddress[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
708
709
710
711
712
713
  	{FNAME("q2931Address") SEQ, 1, 2, 2, SKIP | EXT, 0, _Q2931Address},
  	{FNAME("e164Address") NUMDGT, 7, 1, 0, SKIP, 0, NULL},
  	{FNAME("localAreaAddress") CHOICE, 1, 2, 2, DECODE | EXT,
  	 offsetof(NetworkAccessParameters_networkAddress, localAreaAddress),
  	 _H245_TransportAddress},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
714
  static const struct field_t _NetworkAccessParameters[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
715
716
717
718
719
720
721
722
723
724
  	{FNAME("distribution") CHOICE, 1, 2, 2, SKIP | EXT | OPT, 0,
  	 _NetworkAccessParameters_distribution},
  	{FNAME("networkAddress") CHOICE, 2, 3, 3, DECODE | EXT,
  	 offsetof(NetworkAccessParameters, networkAddress),
  	 _NetworkAccessParameters_networkAddress},
  	{FNAME("associateConference") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("externalReference") OCTSTR, 8, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("t120SetupProcedure") CHOICE, 2, 3, 3, SKIP | EXT | OPT, 0,
  	 NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
725
  static const struct field_t _OpenLogicalChannel[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
726
727
728
729
730
731
732
733
734
735
736
737
738
  	{FNAME("forwardLogicalChannelNumber") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("forwardLogicalChannelParameters") SEQ, 1, 3, 5, DECODE | EXT,
  	 offsetof(OpenLogicalChannel, forwardLogicalChannelParameters),
  	 _OpenLogicalChannel_forwardLogicalChannelParameters},
  	{FNAME("reverseLogicalChannelParameters") SEQ, 1, 2, 4,
  	 DECODE | EXT | OPT, offsetof(OpenLogicalChannel,
  				      reverseLogicalChannelParameters),
  	 _OpenLogicalChannel_reverseLogicalChannelParameters},
  	{FNAME("separateStack") SEQ, 2, 4, 5, DECODE | EXT | OPT,
  	 offsetof(OpenLogicalChannel, separateStack),
  	 _NetworkAccessParameters},
  	{FNAME("encryptionSync") SEQ, 2, 4, 4, STOP | EXT | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
739
  static const struct field_t _Setup_UUIE_fastStart[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
740
741
742
743
  	{FNAME("item") SEQ, 1, 3, 5, DECODE | OPEN | EXT,
  	 sizeof(OpenLogicalChannel), _OpenLogicalChannel}
  	,
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
744
  static const struct field_t _Setup_UUIE[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
  	{FNAME("protocolIdentifier") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("h245Address") CHOICE, 3, 7, 7, DECODE | EXT | OPT,
  	 offsetof(Setup_UUIE, h245Address), _TransportAddress},
  	{FNAME("sourceAddress") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 _Setup_UUIE_sourceAddress},
  	{FNAME("sourceInfo") SEQ, 6, 8, 10, SKIP | EXT, 0, _EndpointType},
  	{FNAME("destinationAddress") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 _Setup_UUIE_destinationAddress},
  	{FNAME("destCallSignalAddress") CHOICE, 3, 7, 7, DECODE | EXT | OPT,
  	 offsetof(Setup_UUIE, destCallSignalAddress), _TransportAddress},
  	{FNAME("destExtraCallInfo") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 _Setup_UUIE_destExtraCallInfo},
  	{FNAME("destExtraCRV") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 _Setup_UUIE_destExtraCRV},
  	{FNAME("activeMC") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("conferenceID") OCTSTR, FIXD, 16, 0, SKIP, 0, NULL},
  	{FNAME("conferenceGoal") CHOICE, 2, 3, 5, SKIP | EXT, 0,
  	 _Setup_UUIE_conferenceGoal},
  	{FNAME("callServices") SEQ, 0, 8, 8, SKIP | EXT | OPT, 0,
  	 _QseriesOptions},
  	{FNAME("callType") CHOICE, 2, 4, 4, SKIP | EXT, 0, _CallType},
  	{FNAME("sourceCallSignalAddress") CHOICE, 3, 7, 7, DECODE | EXT | OPT,
  	 offsetof(Setup_UUIE, sourceCallSignalAddress), _TransportAddress},
  	{FNAME("remoteExtensionAddress") CHOICE, 1, 2, 7, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("callIdentifier") SEQ, 0, 1, 1, SKIP | EXT, 0, NULL},
  	{FNAME("h245SecurityCapability") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("fastStart") SEQOF, SEMI, 0, 30, DECODE | OPT,
  	 offsetof(Setup_UUIE, fastStart), _Setup_UUIE_fastStart},
  	{FNAME("mediaWaitForConnect") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("canOverlapSend") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("endpointIdentifier") BMPSTR, 7, 1, 0, STOP | OPT, 0, NULL},
  	{FNAME("multipleCalls") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("maintainConnection") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("connectionParameters") SEQ, 0, 3, 3, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("language") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("presentationIndicator") CHOICE, 2, 3, 3, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("screeningIndicator") ENUM, 2, 0, 0, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("serviceControl") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("symmetricOperationRequired") NUL, FIXD, 0, 0, SKIP | OPT, 0,
  	 NULL},
  	{FNAME("capacity") SEQ, 2, 2, 2, SKIP | EXT | OPT, 0, NULL},
  	{FNAME("circuitInfo") SEQ, 3, 3, 3, SKIP | EXT | OPT, 0, NULL},
  	{FNAME("desiredProtocols") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("neededFeatures") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("desiredFeatures") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("supportedFeatures") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("parallelH245Control") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("additionalSourceAddresses") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
802
  static const struct field_t _CallProceeding_UUIE_fastStart[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
803
804
805
806
  	{FNAME("item") SEQ, 1, 3, 5, DECODE | OPEN | EXT,
  	 sizeof(OpenLogicalChannel), _OpenLogicalChannel}
  	,
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
807
  static const struct field_t _CallProceeding_UUIE[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
  	{FNAME("protocolIdentifier") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("destinationInfo") SEQ, 6, 8, 10, SKIP | EXT, 0,
  	 _EndpointType},
  	{FNAME("h245Address") CHOICE, 3, 7, 7, DECODE | EXT | OPT,
  	 offsetof(CallProceeding_UUIE, h245Address), _TransportAddress},
  	{FNAME("callIdentifier") SEQ, 0, 1, 1, SKIP | EXT, 0, NULL},
  	{FNAME("h245SecurityMode") CHOICE, 2, 4, 4, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("fastStart") SEQOF, SEMI, 0, 30, DECODE | OPT,
  	 offsetof(CallProceeding_UUIE, fastStart),
  	 _CallProceeding_UUIE_fastStart},
  	{FNAME("multipleCalls") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("maintainConnection") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("fastConnectRefused") NUL, FIXD, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("featureSet") SEQ, 3, 4, 4, SKIP | EXT | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
826
  static const struct field_t _Connect_UUIE_fastStart[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
827
828
829
830
  	{FNAME("item") SEQ, 1, 3, 5, DECODE | OPEN | EXT,
  	 sizeof(OpenLogicalChannel), _OpenLogicalChannel}
  	,
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
831
  static const struct field_t _Connect_UUIE[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
  	{FNAME("protocolIdentifier") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("h245Address") CHOICE, 3, 7, 7, DECODE | EXT | OPT,
  	 offsetof(Connect_UUIE, h245Address), _TransportAddress},
  	{FNAME("destinationInfo") SEQ, 6, 8, 10, SKIP | EXT, 0,
  	 _EndpointType},
  	{FNAME("conferenceID") OCTSTR, FIXD, 16, 0, SKIP, 0, NULL},
  	{FNAME("callIdentifier") SEQ, 0, 1, 1, SKIP | EXT, 0, NULL},
  	{FNAME("h245SecurityMode") CHOICE, 2, 4, 4, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("fastStart") SEQOF, SEMI, 0, 30, DECODE | OPT,
  	 offsetof(Connect_UUIE, fastStart), _Connect_UUIE_fastStart},
  	{FNAME("multipleCalls") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("maintainConnection") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("language") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("connectedAddress") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("presentationIndicator") CHOICE, 2, 3, 3, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("screeningIndicator") ENUM, 2, 0, 0, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("fastConnectRefused") NUL, FIXD, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("serviceControl") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("capacity") SEQ, 2, 2, 2, SKIP | EXT | OPT, 0, NULL},
  	{FNAME("featureSet") SEQ, 3, 4, 4, SKIP | EXT | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
858
  static const struct field_t _Alerting_UUIE_fastStart[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
859
860
861
862
  	{FNAME("item") SEQ, 1, 3, 5, DECODE | OPEN | EXT,
  	 sizeof(OpenLogicalChannel), _OpenLogicalChannel}
  	,
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
863
  static const struct field_t _Alerting_UUIE[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
  	{FNAME("protocolIdentifier") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("destinationInfo") SEQ, 6, 8, 10, SKIP | EXT, 0,
  	 _EndpointType},
  	{FNAME("h245Address") CHOICE, 3, 7, 7, DECODE | EXT | OPT,
  	 offsetof(Alerting_UUIE, h245Address), _TransportAddress},
  	{FNAME("callIdentifier") SEQ, 0, 1, 1, SKIP | EXT, 0, NULL},
  	{FNAME("h245SecurityMode") CHOICE, 2, 4, 4, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("fastStart") SEQOF, SEMI, 0, 30, DECODE | OPT,
  	 offsetof(Alerting_UUIE, fastStart), _Alerting_UUIE_fastStart},
  	{FNAME("multipleCalls") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("maintainConnection") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("alertingAddress") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("presentationIndicator") CHOICE, 2, 3, 3, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("screeningIndicator") ENUM, 2, 0, 0, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("fastConnectRefused") NUL, FIXD, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("serviceControl") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("capacity") SEQ, 2, 2, 2, SKIP | EXT | OPT, 0, NULL},
  	{FNAME("featureSet") SEQ, 3, 4, 4, SKIP | EXT | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
888
  static const struct field_t _Information_UUIE[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
889
890
891
892
  	{FNAME("protocolIdentifier") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("callIdentifier") SEQ, 0, 1, 1, SKIP | EXT, 0, NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
d05291868   Jing Min Zhao   [NETFILTER]: nf_c...
893
  	{FNAME("fastStart") SEQOF, SEMI, 0, 30, SKIP | OPT, 0, NULL},
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
894
895
896
  	{FNAME("fastConnectRefused") NUL, FIXD, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("circuitInfo") SEQ, 3, 3, 3, SKIP | EXT | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
897
  static const struct field_t _ReleaseCompleteReason[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
  	{FNAME("noBandwidth") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("gatekeeperResources") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("unreachableDestination") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("destinationRejection") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("invalidRevision") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("noPermission") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("unreachableGatekeeper") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("gatewayResources") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("badFormatAddress") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("adaptiveBusy") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("inConf") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("undefinedReason") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("facilityCallDeflection") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("securityDenied") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("calledPartyNotRegistered") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("callerNotRegistered") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("newConnectionNeeded") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("nonStandardReason") SEQ, 0, 2, 2, SKIP, 0, NULL},
  	{FNAME("replaceWithConferenceInvite") OCTSTR, FIXD, 16, 0, SKIP, 0,
  	 NULL},
  	{FNAME("genericDataReason") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("neededFeatureNotSupported") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("tunnelledSignallingRejected") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
922
  static const struct field_t _ReleaseComplete_UUIE[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
  	{FNAME("protocolIdentifier") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("reason") CHOICE, 4, 12, 22, SKIP | EXT | OPT, 0,
  	 _ReleaseCompleteReason},
  	{FNAME("callIdentifier") SEQ, 0, 1, 1, SKIP | EXT, 0, NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("busyAddress") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("presentationIndicator") CHOICE, 2, 3, 3, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("screeningIndicator") ENUM, 2, 0, 0, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("capacity") SEQ, 2, 2, 2, SKIP | EXT | OPT, 0, NULL},
  	{FNAME("serviceControl") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("featureSet") SEQ, 3, 4, 4, SKIP | EXT | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
938
  static const struct field_t _Facility_UUIE_alternativeAliasAddress[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
939
940
  	{FNAME("item") CHOICE, 1, 2, 7, SKIP | EXT, 0, _AliasAddress},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
941
  static const struct field_t _FacilityReason[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
942
943
944
945
946
947
948
949
950
951
952
953
  	{FNAME("routeCallToGatekeeper") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("callForwarded") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("routeCallToMC") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("undefinedReason") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("conferenceListChoice") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("startH245") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("noH245") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("newTokens") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("featureSetUpdate") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("forwardedElements") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("transportedInformation") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
954
  static const struct field_t _Facility_UUIE_fastStart[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
955
956
957
958
  	{FNAME("item") SEQ, 1, 3, 5, DECODE | OPEN | EXT,
  	 sizeof(OpenLogicalChannel), _OpenLogicalChannel}
  	,
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
959
  static const struct field_t _Facility_UUIE[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
960
  	{FNAME("protocolIdentifier") OID, BYTE, 0, 0, SKIP, 0, NULL},
c0d4cfd96   Jing Min Zhao   [NETFILTER]: H.32...
961
962
  	{FNAME("alternativeAddress") CHOICE, 3, 7, 7, DECODE | EXT | OPT,
  	 offsetof(Facility_UUIE, alternativeAddress), _TransportAddress},
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
  	{FNAME("alternativeAliasAddress") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 _Facility_UUIE_alternativeAliasAddress},
  	{FNAME("conferenceID") OCTSTR, FIXD, 16, 0, SKIP | OPT, 0, NULL},
  	{FNAME("reason") CHOICE, 2, 4, 11, DECODE | EXT,
  	 offsetof(Facility_UUIE, reason), _FacilityReason},
  	{FNAME("callIdentifier") SEQ, 0, 1, 1, SKIP | EXT, 0, NULL},
  	{FNAME("destExtraCallInfo") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("remoteExtensionAddress") CHOICE, 1, 2, 7, SKIP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("conferences") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("h245Address") CHOICE, 3, 7, 7, DECODE | EXT | OPT,
  	 offsetof(Facility_UUIE, h245Address), _TransportAddress},
  	{FNAME("fastStart") SEQOF, SEMI, 0, 30, DECODE | OPT,
  	 offsetof(Facility_UUIE, fastStart), _Facility_UUIE_fastStart},
  	{FNAME("multipleCalls") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("maintainConnection") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("fastConnectRefused") NUL, FIXD, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("serviceControl") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("circuitInfo") SEQ, 3, 3, 3, SKIP | EXT | OPT, 0, NULL},
  	{FNAME("featureSet") SEQ, 3, 4, 4, SKIP | EXT | OPT, 0, NULL},
  	{FNAME("destinationInfo") SEQ, 6, 8, 10, SKIP | EXT | OPT, 0, NULL},
  	{FNAME("h245SecurityMode") CHOICE, 2, 4, 4, SKIP | EXT | OPT, 0,
  	 NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
989
  static const struct field_t _CallIdentifier[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
990
991
  	{FNAME("guid") OCTSTR, FIXD, 16, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
992
  static const struct field_t _SecurityServiceMode[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
993
994
995
996
  	{FNAME("nonStandard") SEQ, 0, 2, 2, SKIP, 0, _NonStandardParameter},
  	{FNAME("none") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("default") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
997
  static const struct field_t _SecurityCapabilities[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
998
999
1000
1001
1002
1003
1004
1005
1006
  	{FNAME("nonStandard") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("encryption") CHOICE, 2, 3, 3, SKIP | EXT, 0,
  	 _SecurityServiceMode},
  	{FNAME("authenticaton") CHOICE, 2, 3, 3, SKIP | EXT, 0,
  	 _SecurityServiceMode},
  	{FNAME("integrity") CHOICE, 2, 3, 3, SKIP | EXT, 0,
  	 _SecurityServiceMode},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1007
  static const struct field_t _H245Security[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1008
1009
1010
1011
1012
  	{FNAME("nonStandard") SEQ, 0, 2, 2, SKIP, 0, _NonStandardParameter},
  	{FNAME("noSecurity") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("tls") SEQ, 1, 4, 4, SKIP | EXT, 0, _SecurityCapabilities},
  	{FNAME("ipsec") SEQ, 1, 4, 4, SKIP | EXT, 0, _SecurityCapabilities},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1013
  static const struct field_t _DHset[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1014
1015
1016
1017
  	{FNAME("halfkey") BITSTR, WORD, 0, 0, SKIP, 0, NULL},
  	{FNAME("modSize") BITSTR, WORD, 0, 0, SKIP, 0, NULL},
  	{FNAME("generator") BITSTR, WORD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1018
  static const struct field_t _TypedCertificate[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1019
1020
1021
  	{FNAME("type") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("certificate") OCTSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1022
  static const struct field_t _H235_NonStandardParameter[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1023
1024
1025
  	{FNAME("nonStandardIdentifier") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("data") OCTSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1026
  static const struct field_t _ClearToken[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
  	{FNAME("tokenOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("timeStamp") INT, CONS, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("password") BMPSTR, 7, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("dhkey") SEQ, 0, 3, 3, SKIP | EXT | OPT, 0, _DHset},
  	{FNAME("challenge") OCTSTR, 7, 8, 0, SKIP | OPT, 0, NULL},
  	{FNAME("random") INT, UNCO, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("certificate") SEQ, 0, 2, 2, SKIP | EXT | OPT, 0,
  	 _TypedCertificate},
  	{FNAME("generalID") BMPSTR, 7, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("nonStandard") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _H235_NonStandardParameter},
  	{FNAME("eckasdhkey") CHOICE, 1, 2, 2, SKIP | EXT | OPT, 0, NULL},
  	{FNAME("sendersID") BMPSTR, 7, 1, 0, SKIP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1041
  static const struct field_t _Progress_UUIE_tokens[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1042
1043
  	{FNAME("item") SEQ, 8, 9, 11, SKIP | EXT, 0, _ClearToken},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1044
  static const struct field_t _Params[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1045
1046
1047
1048
  	{FNAME("ranInt") INT, UNCO, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("iv8") OCTSTR, FIXD, 8, 0, SKIP | OPT, 0, NULL},
  	{FNAME("iv16") OCTSTR, FIXD, 16, 0, SKIP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1049
  static const struct field_t _CryptoH323Token_cryptoEPPwdHash_token[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1050
1051
1052
1053
  	{FNAME("algorithmOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("paramS") SEQ, 2, 2, 3, SKIP | EXT, 0, _Params},
  	{FNAME("hash") BITSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1054
  static const struct field_t _CryptoH323Token_cryptoEPPwdHash[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1055
1056
1057
1058
1059
  	{FNAME("alias") CHOICE, 1, 2, 7, SKIP | EXT, 0, _AliasAddress},
  	{FNAME("timeStamp") INT, CONS, 1, 0, SKIP, 0, NULL},
  	{FNAME("token") SEQ, 0, 3, 3, SKIP, 0,
  	 _CryptoH323Token_cryptoEPPwdHash_token},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1060
  static const struct field_t _CryptoH323Token_cryptoGKPwdHash_token[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1061
1062
1063
1064
  	{FNAME("algorithmOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("paramS") SEQ, 2, 2, 3, SKIP | EXT, 0, _Params},
  	{FNAME("hash") BITSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1065
  static const struct field_t _CryptoH323Token_cryptoGKPwdHash[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1066
1067
1068
1069
1070
  	{FNAME("gatekeeperId") BMPSTR, 7, 1, 0, SKIP, 0, NULL},
  	{FNAME("timeStamp") INT, CONS, 1, 0, SKIP, 0, NULL},
  	{FNAME("token") SEQ, 0, 3, 3, SKIP, 0,
  	 _CryptoH323Token_cryptoGKPwdHash_token},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1071
  static const struct field_t _CryptoH323Token_cryptoEPPwdEncr[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1072
1073
1074
1075
  	{FNAME("algorithmOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("paramS") SEQ, 2, 2, 3, SKIP | EXT, 0, _Params},
  	{FNAME("encryptedData") OCTSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1076
  static const struct field_t _CryptoH323Token_cryptoGKPwdEncr[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1077
1078
1079
1080
  	{FNAME("algorithmOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("paramS") SEQ, 2, 2, 3, SKIP | EXT, 0, _Params},
  	{FNAME("encryptedData") OCTSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1081
  static const struct field_t _CryptoH323Token_cryptoEPCert[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1082
1083
1084
1085
1086
  	{FNAME("toBeSigned") SEQ, 8, 9, 11, SKIP | OPEN | EXT, 0, NULL},
  	{FNAME("algorithmOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("paramS") SEQ, 2, 2, 3, SKIP | EXT, 0, _Params},
  	{FNAME("signature") BITSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1087
  static const struct field_t _CryptoH323Token_cryptoGKCert[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1088
1089
1090
1091
1092
  	{FNAME("toBeSigned") SEQ, 8, 9, 11, SKIP | OPEN | EXT, 0, NULL},
  	{FNAME("algorithmOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("paramS") SEQ, 2, 2, 3, SKIP | EXT, 0, _Params},
  	{FNAME("signature") BITSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1093
  static const struct field_t _CryptoH323Token_cryptoFastStart[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1094
1095
1096
1097
1098
  	{FNAME("toBeSigned") SEQ, 8, 9, 11, SKIP | OPEN | EXT, 0, NULL},
  	{FNAME("algorithmOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("paramS") SEQ, 2, 2, 3, SKIP | EXT, 0, _Params},
  	{FNAME("signature") BITSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1099
  static const struct field_t _CryptoToken_cryptoEncryptedToken_token[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1100
1101
1102
1103
  	{FNAME("algorithmOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("paramS") SEQ, 2, 2, 3, SKIP | EXT, 0, _Params},
  	{FNAME("encryptedData") OCTSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1104
  static const struct field_t _CryptoToken_cryptoEncryptedToken[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1105
1106
1107
1108
  	{FNAME("tokenOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("token") SEQ, 0, 3, 3, SKIP, 0,
  	 _CryptoToken_cryptoEncryptedToken_token},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1109
  static const struct field_t _CryptoToken_cryptoSignedToken_token[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1110
1111
1112
1113
1114
  	{FNAME("toBeSigned") SEQ, 8, 9, 11, SKIP | OPEN | EXT, 0, NULL},
  	{FNAME("algorithmOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("paramS") SEQ, 2, 2, 3, SKIP | EXT, 0, _Params},
  	{FNAME("signature") BITSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1115
  static const struct field_t _CryptoToken_cryptoSignedToken[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1116
1117
1118
1119
  	{FNAME("tokenOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("token") SEQ, 0, 4, 4, SKIP, 0,
  	 _CryptoToken_cryptoSignedToken_token},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1120
  static const struct field_t _CryptoToken_cryptoHashedToken_token[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1121
1122
1123
1124
  	{FNAME("algorithmOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("paramS") SEQ, 2, 2, 3, SKIP | EXT, 0, _Params},
  	{FNAME("hash") BITSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1125
  static const struct field_t _CryptoToken_cryptoHashedToken[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1126
1127
1128
1129
1130
  	{FNAME("tokenOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("hashedVals") SEQ, 8, 9, 11, SKIP | EXT, 0, _ClearToken},
  	{FNAME("token") SEQ, 0, 3, 3, SKIP, 0,
  	 _CryptoToken_cryptoHashedToken_token},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1131
  static const struct field_t _CryptoToken_cryptoPwdEncr[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1132
1133
1134
1135
  	{FNAME("algorithmOID") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("paramS") SEQ, 2, 2, 3, SKIP | EXT, 0, _Params},
  	{FNAME("encryptedData") OCTSTR, SEMI, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1136
  static const struct field_t _CryptoToken[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1137
1138
1139
1140
1141
1142
1143
1144
1145
  	{FNAME("cryptoEncryptedToken") SEQ, 0, 2, 2, SKIP, 0,
  	 _CryptoToken_cryptoEncryptedToken},
  	{FNAME("cryptoSignedToken") SEQ, 0, 2, 2, SKIP, 0,
  	 _CryptoToken_cryptoSignedToken},
  	{FNAME("cryptoHashedToken") SEQ, 0, 3, 3, SKIP, 0,
  	 _CryptoToken_cryptoHashedToken},
  	{FNAME("cryptoPwdEncr") SEQ, 0, 3, 3, SKIP, 0,
  	 _CryptoToken_cryptoPwdEncr},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1146
  static const struct field_t _CryptoH323Token[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
  	{FNAME("cryptoEPPwdHash") SEQ, 0, 3, 3, SKIP, 0,
  	 _CryptoH323Token_cryptoEPPwdHash},
  	{FNAME("cryptoGKPwdHash") SEQ, 0, 3, 3, SKIP, 0,
  	 _CryptoH323Token_cryptoGKPwdHash},
  	{FNAME("cryptoEPPwdEncr") SEQ, 0, 3, 3, SKIP, 0,
  	 _CryptoH323Token_cryptoEPPwdEncr},
  	{FNAME("cryptoGKPwdEncr") SEQ, 0, 3, 3, SKIP, 0,
  	 _CryptoH323Token_cryptoGKPwdEncr},
  	{FNAME("cryptoEPCert") SEQ, 0, 4, 4, SKIP, 0,
  	 _CryptoH323Token_cryptoEPCert},
  	{FNAME("cryptoGKCert") SEQ, 0, 4, 4, SKIP, 0,
  	 _CryptoH323Token_cryptoGKCert},
  	{FNAME("cryptoFastStart") SEQ, 0, 4, 4, SKIP, 0,
  	 _CryptoH323Token_cryptoFastStart},
  	{FNAME("nestedcryptoToken") CHOICE, 2, 4, 4, SKIP | EXT, 0,
  	 _CryptoToken},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1164
  static const struct field_t _Progress_UUIE_cryptoTokens[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1165
1166
  	{FNAME("item") CHOICE, 3, 8, 8, SKIP | EXT, 0, _CryptoH323Token},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1167
  static const struct field_t _Progress_UUIE_fastStart[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1168
1169
1170
1171
  	{FNAME("item") SEQ, 1, 3, 5, DECODE | OPEN | EXT,
  	 sizeof(OpenLogicalChannel), _OpenLogicalChannel}
  	,
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1172
  static const struct field_t _Progress_UUIE[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
  	{FNAME("protocolIdentifier") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("destinationInfo") SEQ, 6, 8, 10, SKIP | EXT, 0,
  	 _EndpointType},
  	{FNAME("h245Address") CHOICE, 3, 7, 7, DECODE | EXT | OPT,
  	 offsetof(Progress_UUIE, h245Address), _TransportAddress},
  	{FNAME("callIdentifier") SEQ, 0, 1, 1, SKIP | EXT, 0,
  	 _CallIdentifier},
  	{FNAME("h245SecurityMode") CHOICE, 2, 4, 4, SKIP | EXT | OPT, 0,
  	 _H245Security},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 _Progress_UUIE_tokens},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 _Progress_UUIE_cryptoTokens},
  	{FNAME("fastStart") SEQOF, SEMI, 0, 30, DECODE | OPT,
  	 offsetof(Progress_UUIE, fastStart), _Progress_UUIE_fastStart},
  	{FNAME("multipleCalls") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("maintainConnection") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("fastConnectRefused") NUL, FIXD, 0, 0, SKIP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1192
  static const struct field_t _H323_UU_PDU_h323_message_body[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1193
1194
1195
1196
1197
1198
1199
1200
1201
  	{FNAME("setup") SEQ, 7, 13, 39, DECODE | EXT,
  	 offsetof(H323_UU_PDU_h323_message_body, setup), _Setup_UUIE},
  	{FNAME("callProceeding") SEQ, 1, 3, 12, DECODE | EXT,
  	 offsetof(H323_UU_PDU_h323_message_body, callProceeding),
  	 _CallProceeding_UUIE},
  	{FNAME("connect") SEQ, 1, 4, 19, DECODE | EXT,
  	 offsetof(H323_UU_PDU_h323_message_body, connect), _Connect_UUIE},
  	{FNAME("alerting") SEQ, 1, 3, 17, DECODE | EXT,
  	 offsetof(H323_UU_PDU_h323_message_body, alerting), _Alerting_UUIE},
d05291868   Jing Min Zhao   [NETFILTER]: nf_c...
1202
  	{FNAME("information") SEQ, 0, 1, 7, SKIP | EXT, 0, _Information_UUIE},
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
  	{FNAME("releaseComplete") SEQ, 1, 2, 11, SKIP | EXT, 0,
  	 _ReleaseComplete_UUIE},
  	{FNAME("facility") SEQ, 3, 5, 21, DECODE | EXT,
  	 offsetof(H323_UU_PDU_h323_message_body, facility), _Facility_UUIE},
  	{FNAME("progress") SEQ, 5, 8, 11, DECODE | EXT,
  	 offsetof(H323_UU_PDU_h323_message_body, progress), _Progress_UUIE},
  	{FNAME("empty") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("status") SEQ, 2, 4, 4, SKIP | EXT, 0, NULL},
  	{FNAME("statusInquiry") SEQ, 2, 4, 4, SKIP | EXT, 0, NULL},
  	{FNAME("setupAcknowledge") SEQ, 2, 4, 4, SKIP | EXT, 0, NULL},
  	{FNAME("notify") SEQ, 2, 4, 4, SKIP | EXT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1215
  static const struct field_t _RequestMessage[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
  	{FNAME("nonStandard") SEQ, 0, 1, 1, STOP | EXT, 0, NULL},
  	{FNAME("masterSlaveDetermination") SEQ, 0, 2, 2, STOP | EXT, 0, NULL},
  	{FNAME("terminalCapabilitySet") SEQ, 3, 5, 5, STOP | EXT, 0, NULL},
  	{FNAME("openLogicalChannel") SEQ, 1, 3, 5, DECODE | EXT,
  	 offsetof(RequestMessage, openLogicalChannel), _OpenLogicalChannel},
  	{FNAME("closeLogicalChannel") SEQ, 0, 2, 3, STOP | EXT, 0, NULL},
  	{FNAME("requestChannelClose") SEQ, 0, 1, 3, STOP | EXT, 0, NULL},
  	{FNAME("multiplexEntrySend") SEQ, 0, 2, 2, STOP | EXT, 0, NULL},
  	{FNAME("requestMultiplexEntry") SEQ, 0, 1, 1, STOP | EXT, 0, NULL},
  	{FNAME("requestMode") SEQ, 0, 2, 2, STOP | EXT, 0, NULL},
  	{FNAME("roundTripDelayRequest") SEQ, 0, 1, 1, STOP | EXT, 0, NULL},
  	{FNAME("maintenanceLoopRequest") SEQ, 0, 1, 1, STOP | EXT, 0, NULL},
  	{FNAME("communicationModeRequest") SEQ, 0, 0, 0, STOP | EXT, 0, NULL},
  	{FNAME("conferenceRequest") CHOICE, 3, 8, 16, STOP | EXT, 0, NULL},
  	{FNAME("multilinkRequest") CHOICE, 3, 5, 5, STOP | EXT, 0, NULL},
  	{FNAME("logicalChannelRateRequest") SEQ, 0, 3, 3, STOP | EXT, 0,
  	 NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1234
  static const struct field_t _OpenLogicalChannelAck_reverseLogicalChannelParameters_multiplexParameters[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1235
1236
1237
1238
1239
1240
1241
  	{FNAME("h222LogicalChannelParameters") SEQ, 3, 5, 5, SKIP | EXT, 0,
  	 _H222LogicalChannelParameters},
  	{FNAME("h2250LogicalChannelParameters") SEQ, 10, 11, 14, DECODE | EXT,
  	 offsetof
  	 (OpenLogicalChannelAck_reverseLogicalChannelParameters_multiplexParameters,
  	  h2250LogicalChannelParameters), _H2250LogicalChannelParameters},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1242
  static const struct field_t _OpenLogicalChannelAck_reverseLogicalChannelParameters[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1243
1244
1245
1246
1247
1248
1249
1250
  	{FNAME("reverseLogicalChannelNumber") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("portNumber") INT, WORD, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("multiplexParameters") CHOICE, 0, 1, 2, DECODE | EXT | OPT,
  	 offsetof(OpenLogicalChannelAck_reverseLogicalChannelParameters,
  		  multiplexParameters),
  	 _OpenLogicalChannelAck_reverseLogicalChannelParameters_multiplexParameters},
  	{FNAME("replacementFor") INT, WORD, 1, 0, SKIP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1251
  static const struct field_t _H2250LogicalChannelAckParameters_nonStandard[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1252
1253
  	{FNAME("item") SEQ, 0, 2, 2, SKIP, 0, _H245_NonStandardParameter},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1254
  static const struct field_t _H2250LogicalChannelAckParameters[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
  	{FNAME("nonStandard") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 _H2250LogicalChannelAckParameters_nonStandard},
  	{FNAME("sessionID") INT, 8, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("mediaChannel") CHOICE, 1, 2, 2, DECODE | EXT | OPT,
  	 offsetof(H2250LogicalChannelAckParameters, mediaChannel),
  	 _H245_TransportAddress},
  	{FNAME("mediaControlChannel") CHOICE, 1, 2, 2, DECODE | EXT | OPT,
  	 offsetof(H2250LogicalChannelAckParameters, mediaControlChannel),
  	 _H245_TransportAddress},
  	{FNAME("dynamicRTPPayloadType") INT, 5, 96, 0, SKIP | OPT, 0, NULL},
  	{FNAME("flowControlToZero") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("portNumber") INT, WORD, 0, 0, SKIP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1268
  static const struct field_t _OpenLogicalChannelAck_forwardMultiplexAckParameters[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1269
1270
1271
1272
1273
  	{FNAME("h2250LogicalChannelAckParameters") SEQ, 5, 5, 7, DECODE | EXT,
  	 offsetof(OpenLogicalChannelAck_forwardMultiplexAckParameters,
  		  h2250LogicalChannelAckParameters),
  	 _H2250LogicalChannelAckParameters},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1274
  static const struct field_t _OpenLogicalChannelAck[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1275
1276
1277
1278
1279
  	{FNAME("forwardLogicalChannelNumber") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("reverseLogicalChannelParameters") SEQ, 2, 3, 4,
  	 DECODE | EXT | OPT, offsetof(OpenLogicalChannelAck,
  				      reverseLogicalChannelParameters),
  	 _OpenLogicalChannelAck_reverseLogicalChannelParameters},
d05291868   Jing Min Zhao   [NETFILTER]: nf_c...
1280
1281
1282
  	{FNAME("separateStack") SEQ, 2, 4, 5, DECODE | EXT | OPT,
  	 offsetof(OpenLogicalChannelAck, separateStack),
  	 _NetworkAccessParameters},
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1283
1284
1285
1286
1287
1288
  	{FNAME("forwardMultiplexAckParameters") CHOICE, 0, 1, 1,
  	 DECODE | EXT | OPT, offsetof(OpenLogicalChannelAck,
  				      forwardMultiplexAckParameters),
  	 _OpenLogicalChannelAck_forwardMultiplexAckParameters},
  	{FNAME("encryptionSync") SEQ, 2, 4, 4, STOP | EXT | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1289
  static const struct field_t _ResponseMessage[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
  	{FNAME("nonStandard") SEQ, 0, 1, 1, STOP | EXT, 0, NULL},
  	{FNAME("masterSlaveDeterminationAck") SEQ, 0, 1, 1, STOP | EXT, 0,
  	 NULL},
  	{FNAME("masterSlaveDeterminationReject") SEQ, 0, 1, 1, STOP | EXT, 0,
  	 NULL},
  	{FNAME("terminalCapabilitySetAck") SEQ, 0, 1, 1, STOP | EXT, 0, NULL},
  	{FNAME("terminalCapabilitySetReject") SEQ, 0, 2, 2, STOP | EXT, 0,
  	 NULL},
  	{FNAME("openLogicalChannelAck") SEQ, 1, 2, 5, DECODE | EXT,
  	 offsetof(ResponseMessage, openLogicalChannelAck),
  	 _OpenLogicalChannelAck},
  	{FNAME("openLogicalChannelReject") SEQ, 0, 2, 2, STOP | EXT, 0, NULL},
  	{FNAME("closeLogicalChannelAck") SEQ, 0, 1, 1, STOP | EXT, 0, NULL},
  	{FNAME("requestChannelCloseAck") SEQ, 0, 1, 1, STOP | EXT, 0, NULL},
  	{FNAME("requestChannelCloseReject") SEQ, 0, 2, 2, STOP | EXT, 0,
  	 NULL},
  	{FNAME("multiplexEntrySendAck") SEQ, 0, 2, 2, STOP | EXT, 0, NULL},
  	{FNAME("multiplexEntrySendReject") SEQ, 0, 2, 2, STOP | EXT, 0, NULL},
  	{FNAME("requestMultiplexEntryAck") SEQ, 0, 1, 1, STOP | EXT, 0, NULL},
  	{FNAME("requestMultiplexEntryReject") SEQ, 0, 2, 2, STOP | EXT, 0,
  	 NULL},
  	{FNAME("requestModeAck") SEQ, 0, 2, 2, STOP | EXT, 0, NULL},
  	{FNAME("requestModeReject") SEQ, 0, 2, 2, STOP | EXT, 0, NULL},
  	{FNAME("roundTripDelayResponse") SEQ, 0, 1, 1, STOP | EXT, 0, NULL},
  	{FNAME("maintenanceLoopAck") SEQ, 0, 1, 1, STOP | EXT, 0, NULL},
  	{FNAME("maintenanceLoopReject") SEQ, 0, 2, 2, STOP | EXT, 0, NULL},
  	{FNAME("communicationModeResponse") CHOICE, 0, 1, 1, STOP | EXT, 0,
  	 NULL},
  	{FNAME("conferenceResponse") CHOICE, 3, 8, 16, STOP | EXT, 0, NULL},
  	{FNAME("multilinkResponse") CHOICE, 3, 5, 5, STOP | EXT, 0, NULL},
  	{FNAME("logicalChannelRateAcknowledge") SEQ, 0, 3, 3, STOP | EXT, 0,
  	 NULL},
  	{FNAME("logicalChannelRateReject") SEQ, 1, 4, 4, STOP | EXT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1324
  static const struct field_t _MultimediaSystemControlMessage[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1325
1326
1327
1328
1329
1330
1331
1332
  	{FNAME("request") CHOICE, 4, 11, 15, DECODE | EXT,
  	 offsetof(MultimediaSystemControlMessage, request), _RequestMessage},
  	{FNAME("response") CHOICE, 5, 19, 24, DECODE | EXT,
  	 offsetof(MultimediaSystemControlMessage, response),
  	 _ResponseMessage},
  	{FNAME("command") CHOICE, 3, 7, 12, STOP | EXT, 0, NULL},
  	{FNAME("indication") CHOICE, 4, 14, 23, STOP | EXT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1333
  static const struct field_t _H323_UU_PDU_h245Control[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1334
1335
1336
1337
1338
  	{FNAME("item") CHOICE, 2, 4, 4, DECODE | OPEN | EXT,
  	 sizeof(MultimediaSystemControlMessage),
  	 _MultimediaSystemControlMessage}
  	,
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1339
  static const struct field_t _H323_UU_PDU[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
  	{FNAME("h323-message-body") CHOICE, 3, 7, 13, DECODE | EXT,
  	 offsetof(H323_UU_PDU, h323_message_body),
  	 _H323_UU_PDU_h323_message_body},
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("h4501SupplementaryService") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 NULL},
  	{FNAME("h245Tunneling") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("h245Control") SEQOF, SEMI, 0, 4, DECODE | OPT,
  	 offsetof(H323_UU_PDU, h245Control), _H323_UU_PDU_h245Control},
  	{FNAME("nonStandardControl") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("callLinkage") SEQ, 2, 2, 2, STOP | EXT | OPT, 0, NULL},
  	{FNAME("tunnelledSignallingMessage") SEQ, 2, 4, 4, STOP | EXT | OPT,
  	 0, NULL},
  	{FNAME("provisionalRespToH245Tunneling") NUL, FIXD, 0, 0, STOP | OPT,
  	 0, NULL},
  	{FNAME("stimulusControl") SEQ, 3, 3, 3, STOP | EXT | OPT, 0, NULL},
  	{FNAME("genericData") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1359
  static const struct field_t _H323_UserInformation[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1360
1361
1362
1363
  	{FNAME("h323-uu-pdu") SEQ, 1, 2, 11, DECODE | EXT,
  	 offsetof(H323_UserInformation, h323_uu_pdu), _H323_UU_PDU},
  	{FNAME("user-data") SEQ, 0, 2, 2, STOP | EXT | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1364
  static const struct field_t _GatekeeperRequest[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
  	{FNAME("requestSeqNum") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("protocolIdentifier") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("rasAddress") CHOICE, 3, 7, 7, DECODE | EXT,
  	 offsetof(GatekeeperRequest, rasAddress), _TransportAddress},
  	{FNAME("endpointType") SEQ, 6, 8, 10, STOP | EXT, 0, NULL},
  	{FNAME("gatekeeperIdentifier") BMPSTR, 7, 1, 0, STOP | OPT, 0, NULL},
  	{FNAME("callServices") SEQ, 0, 8, 8, STOP | EXT | OPT, 0, NULL},
  	{FNAME("endpointAlias") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("alternateEndpoints") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("authenticationCapability") SEQOF, SEMI, 0, 0, STOP | OPT, 0,
  	 NULL},
  	{FNAME("algorithmOIDs") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("integrity") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("integrityCheckValue") SEQ, 0, 2, 2, STOP | OPT, 0, NULL},
  	{FNAME("supportsAltGK") NUL, FIXD, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("featureSet") SEQ, 3, 4, 4, STOP | EXT | OPT, 0, NULL},
  	{FNAME("genericData") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1387
  static const struct field_t _GatekeeperConfirm[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
  	{FNAME("requestSeqNum") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("protocolIdentifier") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("gatekeeperIdentifier") BMPSTR, 7, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("rasAddress") CHOICE, 3, 7, 7, DECODE | EXT,
  	 offsetof(GatekeeperConfirm, rasAddress), _TransportAddress},
  	{FNAME("alternateGatekeeper") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("authenticationMode") CHOICE, 3, 7, 8, STOP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("algorithmOID") OID, BYTE, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("integrity") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("integrityCheckValue") SEQ, 0, 2, 2, STOP | OPT, 0, NULL},
  	{FNAME("featureSet") SEQ, 3, 4, 4, STOP | EXT | OPT, 0, NULL},
  	{FNAME("genericData") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1406
  static const struct field_t _RegistrationRequest_callSignalAddress[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1407
1408
1409
1410
  	{FNAME("item") CHOICE, 3, 7, 7, DECODE | EXT,
  	 sizeof(TransportAddress), _TransportAddress}
  	,
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1411
  static const struct field_t _RegistrationRequest_rasAddress[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1412
1413
1414
1415
  	{FNAME("item") CHOICE, 3, 7, 7, DECODE | EXT,
  	 sizeof(TransportAddress), _TransportAddress}
  	,
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1416
  static const struct field_t _RegistrationRequest_terminalAlias[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1417
1418
  	{FNAME("item") CHOICE, 1, 2, 7, SKIP | EXT, 0, _AliasAddress},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1419
  static const struct field_t _RegistrationRequest[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
  	{FNAME("requestSeqNum") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("protocolIdentifier") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("discoveryComplete") BOOL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("callSignalAddress") SEQOF, SEMI, 0, 10, DECODE,
  	 offsetof(RegistrationRequest, callSignalAddress),
  	 _RegistrationRequest_callSignalAddress},
  	{FNAME("rasAddress") SEQOF, SEMI, 0, 10, DECODE,
  	 offsetof(RegistrationRequest, rasAddress),
  	 _RegistrationRequest_rasAddress},
  	{FNAME("terminalType") SEQ, 6, 8, 10, SKIP | EXT, 0, _EndpointType},
  	{FNAME("terminalAlias") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 _RegistrationRequest_terminalAlias},
  	{FNAME("gatekeeperIdentifier") BMPSTR, 7, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("endpointVendor") SEQ, 2, 3, 3, SKIP | EXT, 0,
  	 _VendorIdentifier},
  	{FNAME("alternateEndpoints") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("timeToLive") INT, CONS, 1, 0, DECODE | OPT,
  	 offsetof(RegistrationRequest, timeToLive), NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("integrityCheckValue") SEQ, 0, 2, 2, STOP | OPT, 0, NULL},
  	{FNAME("keepAlive") BOOL, FIXD, 0, 0, STOP, 0, NULL},
  	{FNAME("endpointIdentifier") BMPSTR, 7, 1, 0, STOP | OPT, 0, NULL},
  	{FNAME("willSupplyUUIEs") BOOL, FIXD, 0, 0, STOP, 0, NULL},
  	{FNAME("maintainConnection") BOOL, FIXD, 0, 0, STOP, 0, NULL},
  	{FNAME("alternateTransportAddresses") SEQ, 1, 1, 1, STOP | EXT | OPT,
  	 0, NULL},
  	{FNAME("additiveRegistration") NUL, FIXD, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("terminalAliasPattern") SEQOF, SEMI, 0, 0, STOP | OPT, 0,
  	 NULL},
  	{FNAME("supportsAltGK") NUL, FIXD, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("usageReportingCapability") SEQ, 3, 4, 4, STOP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("multipleCalls") BOOL, FIXD, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("supportedH248Packages") SEQOF, SEMI, 0, 0, STOP | OPT, 0,
  	 NULL},
  	{FNAME("callCreditCapability") SEQ, 2, 2, 2, STOP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("capacityReportingCapability") SEQ, 0, 1, 1, STOP | EXT | OPT,
  	 0, NULL},
  	{FNAME("capacity") SEQ, 2, 2, 2, STOP | EXT | OPT, 0, NULL},
  	{FNAME("featureSet") SEQ, 3, 4, 4, STOP | EXT | OPT, 0, NULL},
  	{FNAME("genericData") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1466
  static const struct field_t _RegistrationConfirm_callSignalAddress[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1467
1468
1469
1470
  	{FNAME("item") CHOICE, 3, 7, 7, DECODE | EXT,
  	 sizeof(TransportAddress), _TransportAddress}
  	,
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1471
  static const struct field_t _RegistrationConfirm_terminalAlias[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1472
1473
  	{FNAME("item") CHOICE, 1, 2, 7, SKIP | EXT, 0, _AliasAddress},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1474
  static const struct field_t _RegistrationConfirm[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
  	{FNAME("requestSeqNum") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("protocolIdentifier") OID, BYTE, 0, 0, SKIP, 0, NULL},
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("callSignalAddress") SEQOF, SEMI, 0, 10, DECODE,
  	 offsetof(RegistrationConfirm, callSignalAddress),
  	 _RegistrationConfirm_callSignalAddress},
  	{FNAME("terminalAlias") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 _RegistrationConfirm_terminalAlias},
  	{FNAME("gatekeeperIdentifier") BMPSTR, 7, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("endpointIdentifier") BMPSTR, 7, 1, 0, SKIP, 0, NULL},
  	{FNAME("alternateGatekeeper") SEQOF, SEMI, 0, 0, SKIP | OPT, 0, NULL},
  	{FNAME("timeToLive") INT, CONS, 1, 0, DECODE | OPT,
  	 offsetof(RegistrationConfirm, timeToLive), NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("integrityCheckValue") SEQ, 0, 2, 2, STOP | OPT, 0, NULL},
  	{FNAME("willRespondToIRR") BOOL, FIXD, 0, 0, STOP, 0, NULL},
  	{FNAME("preGrantedARQ") SEQ, 0, 4, 8, STOP | EXT | OPT, 0, NULL},
  	{FNAME("maintainConnection") BOOL, FIXD, 0, 0, STOP, 0, NULL},
  	{FNAME("serviceControl") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("supportsAdditiveRegistration") NUL, FIXD, 0, 0, STOP | OPT, 0,
  	 NULL},
  	{FNAME("terminalAliasPattern") SEQOF, SEMI, 0, 0, STOP | OPT, 0,
  	 NULL},
  	{FNAME("supportedPrefixes") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("usageSpec") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("featureServerAlias") CHOICE, 1, 2, 7, STOP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("capacityReportingSpec") SEQ, 0, 1, 1, STOP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("featureSet") SEQ, 3, 4, 4, STOP | EXT | OPT, 0, NULL},
  	{FNAME("genericData") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1509
  static const struct field_t _UnregistrationRequest_callSignalAddress[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1510
1511
1512
1513
  	{FNAME("item") CHOICE, 3, 7, 7, DECODE | EXT,
  	 sizeof(TransportAddress), _TransportAddress}
  	,
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1514
  static const struct field_t _UnregistrationRequest[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
  	{FNAME("requestSeqNum") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("callSignalAddress") SEQOF, SEMI, 0, 10, DECODE,
  	 offsetof(UnregistrationRequest, callSignalAddress),
  	 _UnregistrationRequest_callSignalAddress},
  	{FNAME("endpointAlias") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, STOP | OPT, 0, NULL},
  	{FNAME("endpointIdentifier") BMPSTR, 7, 1, 0, STOP | OPT, 0, NULL},
  	{FNAME("alternateEndpoints") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("gatekeeperIdentifier") BMPSTR, 7, 1, 0, STOP | OPT, 0, NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("integrityCheckValue") SEQ, 0, 2, 2, STOP | OPT, 0, NULL},
  	{FNAME("reason") CHOICE, 2, 4, 5, STOP | EXT | OPT, 0, NULL},
  	{FNAME("endpointAliasPattern") SEQOF, SEMI, 0, 0, STOP | OPT, 0,
  	 NULL},
  	{FNAME("supportedPrefixes") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("alternateGatekeeper") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("genericData") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1534
  static const struct field_t _CallModel[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1535
1536
1537
  	{FNAME("direct") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  	{FNAME("gatekeeperRouted") NUL, FIXD, 0, 0, SKIP, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1538
  static const struct field_t _AdmissionRequest_destinationInfo[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1539
1540
  	{FNAME("item") CHOICE, 1, 2, 7, SKIP | EXT, 0, _AliasAddress},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1541
  static const struct field_t _AdmissionRequest_destExtraCallInfo[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1542
1543
  	{FNAME("item") CHOICE, 1, 2, 7, SKIP | EXT, 0, _AliasAddress},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1544
  static const struct field_t _AdmissionRequest_srcInfo[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1545
1546
  	{FNAME("item") CHOICE, 1, 2, 7, SKIP | EXT, 0, _AliasAddress},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1547
  static const struct field_t _AdmissionRequest[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
  	{FNAME("requestSeqNum") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("callType") CHOICE, 2, 4, 4, SKIP | EXT, 0, _CallType},
  	{FNAME("callModel") CHOICE, 1, 2, 2, SKIP | EXT | OPT, 0, _CallModel},
  	{FNAME("endpointIdentifier") BMPSTR, 7, 1, 0, SKIP, 0, NULL},
  	{FNAME("destinationInfo") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 _AdmissionRequest_destinationInfo},
  	{FNAME("destCallSignalAddress") CHOICE, 3, 7, 7, DECODE | EXT | OPT,
  	 offsetof(AdmissionRequest, destCallSignalAddress),
  	 _TransportAddress},
  	{FNAME("destExtraCallInfo") SEQOF, SEMI, 0, 0, SKIP | OPT, 0,
  	 _AdmissionRequest_destExtraCallInfo},
  	{FNAME("srcInfo") SEQOF, SEMI, 0, 0, SKIP, 0,
  	 _AdmissionRequest_srcInfo},
  	{FNAME("srcCallSignalAddress") CHOICE, 3, 7, 7, DECODE | EXT | OPT,
  	 offsetof(AdmissionRequest, srcCallSignalAddress), _TransportAddress},
  	{FNAME("bandWidth") INT, CONS, 0, 0, STOP, 0, NULL},
  	{FNAME("callReferenceValue") INT, WORD, 0, 0, STOP, 0, NULL},
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, STOP | OPT, 0, NULL},
  	{FNAME("callServices") SEQ, 0, 8, 8, STOP | EXT | OPT, 0, NULL},
  	{FNAME("conferenceID") OCTSTR, FIXD, 16, 0, STOP, 0, NULL},
  	{FNAME("activeMC") BOOL, FIXD, 0, 0, STOP, 0, NULL},
  	{FNAME("answerCall") BOOL, FIXD, 0, 0, STOP, 0, NULL},
  	{FNAME("canMapAlias") BOOL, FIXD, 0, 0, STOP, 0, NULL},
  	{FNAME("callIdentifier") SEQ, 0, 1, 1, STOP | EXT, 0, NULL},
  	{FNAME("srcAlternatives") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("destAlternatives") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("gatekeeperIdentifier") BMPSTR, 7, 1, 0, STOP | OPT, 0, NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("integrityCheckValue") SEQ, 0, 2, 2, STOP | OPT, 0, NULL},
  	{FNAME("transportQOS") CHOICE, 2, 3, 3, STOP | EXT | OPT, 0, NULL},
  	{FNAME("willSupplyUUIEs") BOOL, FIXD, 0, 0, STOP, 0, NULL},
  	{FNAME("callLinkage") SEQ, 2, 2, 2, STOP | EXT | OPT, 0, NULL},
  	{FNAME("gatewayDataRate") SEQ, 2, 3, 3, STOP | EXT | OPT, 0, NULL},
  	{FNAME("capacity") SEQ, 2, 2, 2, STOP | EXT | OPT, 0, NULL},
  	{FNAME("circuitInfo") SEQ, 3, 3, 3, STOP | EXT | OPT, 0, NULL},
  	{FNAME("desiredProtocols") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("desiredTunnelledProtocol") SEQ, 1, 2, 2, STOP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("featureSet") SEQ, 3, 4, 4, STOP | EXT | OPT, 0, NULL},
  	{FNAME("genericData") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1590
  static const struct field_t _AdmissionConfirm[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
  	{FNAME("requestSeqNum") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("bandWidth") INT, CONS, 0, 0, SKIP, 0, NULL},
  	{FNAME("callModel") CHOICE, 1, 2, 2, SKIP | EXT, 0, _CallModel},
  	{FNAME("destCallSignalAddress") CHOICE, 3, 7, 7, DECODE | EXT,
  	 offsetof(AdmissionConfirm, destCallSignalAddress),
  	 _TransportAddress},
  	{FNAME("irrFrequency") INT, WORD, 1, 0, STOP | OPT, 0, NULL},
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, STOP | OPT, 0, NULL},
  	{FNAME("destinationInfo") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("destExtraCallInfo") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("destinationType") SEQ, 6, 8, 10, STOP | EXT | OPT, 0, NULL},
  	{FNAME("remoteExtensionAddress") SEQOF, SEMI, 0, 0, STOP | OPT, 0,
  	 NULL},
  	{FNAME("alternateEndpoints") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("integrityCheckValue") SEQ, 0, 2, 2, STOP | OPT, 0, NULL},
  	{FNAME("transportQOS") CHOICE, 2, 3, 3, STOP | EXT | OPT, 0, NULL},
  	{FNAME("willRespondToIRR") BOOL, FIXD, 0, 0, STOP, 0, NULL},
  	{FNAME("uuiesRequested") SEQ, 0, 9, 13, STOP | EXT, 0, NULL},
  	{FNAME("language") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("alternateTransportAddresses") SEQ, 1, 1, 1, STOP | EXT | OPT,
  	 0, NULL},
  	{FNAME("useSpecifiedTransport") CHOICE, 1, 2, 2, STOP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("circuitInfo") SEQ, 3, 3, 3, STOP | EXT | OPT, 0, NULL},
  	{FNAME("usageSpec") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("supportedProtocols") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("serviceControl") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("multipleCalls") BOOL, FIXD, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("featureSet") SEQ, 3, 4, 4, STOP | EXT | OPT, 0, NULL},
  	{FNAME("genericData") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1624
  static const struct field_t _LocationRequest_destinationInfo[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1625
1626
  	{FNAME("item") CHOICE, 1, 2, 7, SKIP | EXT, 0, _AliasAddress},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1627
  static const struct field_t _LocationRequest[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
  	{FNAME("requestSeqNum") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("endpointIdentifier") BMPSTR, 7, 1, 0, SKIP | OPT, 0, NULL},
  	{FNAME("destinationInfo") SEQOF, SEMI, 0, 0, SKIP, 0,
  	 _LocationRequest_destinationInfo},
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("replyAddress") CHOICE, 3, 7, 7, DECODE | EXT,
  	 offsetof(LocationRequest, replyAddress), _TransportAddress},
  	{FNAME("sourceInfo") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("canMapAlias") BOOL, FIXD, 0, 0, STOP, 0, NULL},
  	{FNAME("gatekeeperIdentifier") BMPSTR, 7, 1, 0, STOP | OPT, 0, NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("integrityCheckValue") SEQ, 0, 2, 2, STOP | OPT, 0, NULL},
  	{FNAME("desiredProtocols") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("desiredTunnelledProtocol") SEQ, 1, 2, 2, STOP | EXT | OPT, 0,
  	 NULL},
  	{FNAME("featureSet") SEQ, 3, 4, 4, STOP | EXT | OPT, 0, NULL},
  	{FNAME("genericData") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("hopCount") INT, 8, 1, 0, STOP | OPT, 0, NULL},
  	{FNAME("circuitInfo") SEQ, 3, 3, 3, STOP | EXT | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1650
  static const struct field_t _LocationConfirm[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
  	{FNAME("requestSeqNum") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("callSignalAddress") CHOICE, 3, 7, 7, DECODE | EXT,
  	 offsetof(LocationConfirm, callSignalAddress), _TransportAddress},
  	{FNAME("rasAddress") CHOICE, 3, 7, 7, DECODE | EXT,
  	 offsetof(LocationConfirm, rasAddress), _TransportAddress},
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, STOP | OPT, 0, NULL},
  	{FNAME("destinationInfo") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("destExtraCallInfo") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("destinationType") SEQ, 6, 8, 10, STOP | EXT | OPT, 0, NULL},
  	{FNAME("remoteExtensionAddress") SEQOF, SEMI, 0, 0, STOP | OPT, 0,
  	 NULL},
  	{FNAME("alternateEndpoints") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("integrityCheckValue") SEQ, 0, 2, 2, STOP | OPT, 0, NULL},
  	{FNAME("alternateTransportAddresses") SEQ, 1, 1, 1, STOP | EXT | OPT,
  	 0, NULL},
  	{FNAME("supportedProtocols") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("multipleCalls") BOOL, FIXD, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("featureSet") SEQ, 3, 4, 4, STOP | EXT | OPT, 0, NULL},
  	{FNAME("genericData") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("circuitInfo") SEQ, 3, 3, 3, STOP | EXT | OPT, 0, NULL},
  	{FNAME("serviceControl") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1675
  static const struct field_t _InfoRequestResponse_callSignalAddress[] = {	/* SEQUENCE OF */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1676
1677
1678
1679
  	{FNAME("item") CHOICE, 3, 7, 7, DECODE | EXT,
  	 sizeof(TransportAddress), _TransportAddress}
  	,
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1680
  static const struct field_t _InfoRequestResponse[] = {	/* SEQUENCE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
  	{FNAME("nonStandardData") SEQ, 0, 2, 2, SKIP | OPT, 0,
  	 _NonStandardParameter},
  	{FNAME("requestSeqNum") INT, WORD, 1, 0, SKIP, 0, NULL},
  	{FNAME("endpointType") SEQ, 6, 8, 10, SKIP | EXT, 0, _EndpointType},
  	{FNAME("endpointIdentifier") BMPSTR, 7, 1, 0, SKIP, 0, NULL},
  	{FNAME("rasAddress") CHOICE, 3, 7, 7, DECODE | EXT,
  	 offsetof(InfoRequestResponse, rasAddress), _TransportAddress},
  	{FNAME("callSignalAddress") SEQOF, SEMI, 0, 10, DECODE,
  	 offsetof(InfoRequestResponse, callSignalAddress),
  	 _InfoRequestResponse_callSignalAddress},
  	{FNAME("endpointAlias") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("perCallInfo") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("tokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("cryptoTokens") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  	{FNAME("integrityCheckValue") SEQ, 0, 2, 2, STOP | OPT, 0, NULL},
  	{FNAME("needResponse") BOOL, FIXD, 0, 0, STOP, 0, NULL},
  	{FNAME("capacity") SEQ, 2, 2, 2, STOP | EXT | OPT, 0, NULL},
  	{FNAME("irrStatus") CHOICE, 2, 4, 4, STOP | EXT | OPT, 0, NULL},
  	{FNAME("unsolicited") BOOL, FIXD, 0, 0, STOP, 0, NULL},
  	{FNAME("genericData") SEQOF, SEMI, 0, 0, STOP | OPT, 0, NULL},
  };
905e3e8ec   Jan Engelhardt   [NETFILTER]: nf_c...
1702
  static const struct field_t _RasMessage[] = {	/* CHOICE */
5e35941d9   Jing Min Zhao   [NETFILTER]: Add ...
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
  	{FNAME("gatekeeperRequest") SEQ, 4, 8, 18, DECODE | EXT,
  	 offsetof(RasMessage, gatekeeperRequest), _GatekeeperRequest},
  	{FNAME("gatekeeperConfirm") SEQ, 2, 5, 14, DECODE | EXT,
  	 offsetof(RasMessage, gatekeeperConfirm), _GatekeeperConfirm},
  	{FNAME("gatekeeperReject") SEQ, 2, 5, 11, STOP | EXT, 0, NULL},
  	{FNAME("registrationRequest") SEQ, 3, 10, 31, DECODE | EXT,
  	 offsetof(RasMessage, registrationRequest), _RegistrationRequest},
  	{FNAME("registrationConfirm") SEQ, 3, 7, 24, DECODE | EXT,
  	 offsetof(RasMessage, registrationConfirm), _RegistrationConfirm},
  	{FNAME("registrationReject") SEQ, 2, 5, 11, STOP | EXT, 0, NULL},
  	{FNAME("unregistrationRequest") SEQ, 3, 5, 15, DECODE | EXT,
  	 offsetof(RasMessage, unregistrationRequest), _UnregistrationRequest},
  	{FNAME("unregistrationConfirm") SEQ, 1, 2, 6, STOP | EXT, 0, NULL},
  	{FNAME("unregistrationReject") SEQ, 1, 3, 8, STOP | EXT, 0, NULL},
  	{FNAME("admissionRequest") SEQ, 7, 16, 34, DECODE | EXT,
  	 offsetof(RasMessage, admissionRequest), _AdmissionRequest},
  	{FNAME("admissionConfirm") SEQ, 2, 6, 27, DECODE | EXT,
  	 offsetof(RasMessage, admissionConfirm), _AdmissionConfirm},
  	{FNAME("admissionReject") SEQ, 1, 3, 11, STOP | EXT, 0, NULL},
  	{FNAME("bandwidthRequest") SEQ, 2, 7, 18, STOP | EXT, 0, NULL},
  	{FNAME("bandwidthConfirm") SEQ, 1, 3, 8, STOP | EXT, 0, NULL},
  	{FNAME("bandwidthReject") SEQ, 1, 4, 9, STOP | EXT, 0, NULL},
  	{FNAME("disengageRequest") SEQ, 1, 6, 19, STOP | EXT, 0, NULL},
  	{FNAME("disengageConfirm") SEQ, 1, 2, 9, STOP | EXT, 0, NULL},
  	{FNAME("disengageReject") SEQ, 1, 3, 8, STOP | EXT, 0, NULL},
  	{FNAME("locationRequest") SEQ, 2, 5, 17, DECODE | EXT,
  	 offsetof(RasMessage, locationRequest), _LocationRequest},
  	{FNAME("locationConfirm") SEQ, 1, 4, 19, DECODE | EXT,
  	 offsetof(RasMessage, locationConfirm), _LocationConfirm},
  	{FNAME("locationReject") SEQ, 1, 3, 10, STOP | EXT, 0, NULL},
  	{FNAME("infoRequest") SEQ, 2, 4, 15, STOP | EXT, 0, NULL},
  	{FNAME("infoRequestResponse") SEQ, 3, 8, 16, DECODE | EXT,
  	 offsetof(RasMessage, infoRequestResponse), _InfoRequestResponse},
  	{FNAME("nonStandardMessage") SEQ, 0, 2, 7, STOP | EXT, 0, NULL},
  	{FNAME("unknownMessageResponse") SEQ, 0, 1, 5, STOP | EXT, 0, NULL},
  	{FNAME("requestInProgress") SEQ, 4, 6, 6, STOP | EXT, 0, NULL},
  	{FNAME("resourcesAvailableIndicate") SEQ, 4, 9, 11, STOP | EXT, 0,
  	 NULL},
  	{FNAME("resourcesAvailableConfirm") SEQ, 4, 6, 7, STOP | EXT, 0,
  	 NULL},
  	{FNAME("infoRequestAck") SEQ, 4, 5, 5, STOP | EXT, 0, NULL},
  	{FNAME("infoRequestNak") SEQ, 5, 7, 7, STOP | EXT, 0, NULL},
  	{FNAME("serviceControlIndication") SEQ, 8, 10, 10, STOP | EXT, 0,
  	 NULL},
  	{FNAME("serviceControlResponse") SEQ, 7, 8, 8, STOP | EXT, 0, NULL},
  };