blob: 6cfb716a6e90c05fc98bf80530962f838cdaf818 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# h282.cnf
# H.282 conformation file
# 2007 Tomas Kukosa
#.OPT
PER
ALIGNED
#.END
#.OMIT_ASSIGNMENT
IrisContinuous
#.END
#.PDU
RDCPDU
NonCollapsingCapabilities
#.END
#.FIELD_RENAME
CameraFilterCapability/filterTextLabel/_item/filterTextLabel filterTextLabel_deviceText
#.FIELD_ATTR
CameraFilterCapability/filterTextLabel/_item/filterTextLabel ABBREV=filterTextLabel.deviceText
#.FN_PARS RequestPDU
VAL_PTR = &msg_type
#.FN_HDR
int32_t msg_type = -1;
const char *p = NULL;
#.FN_FTR
p = try_val_to_str(msg_type, VALS(h282_RequestPDU_vals));
if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "RequestPDU/%s", p);
#.END
#.FN_PARS ResponsePDU
VAL_PTR = &msg_type
#.FN_HDR
int32_t msg_type = -1;
const char *p = NULL;
#.FN_FTR
p = try_val_to_str(msg_type, VALS(h282_ResponsePDU_vals));
if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "ResponsePDU/%s", p);
#.END
#.FN_PARS IndicationPDU
VAL_PTR = &msg_type
#.FN_HDR
int32_t msg_type = -1;
const char *p = NULL;
#.FN_FTR
p = try_val_to_str(msg_type, VALS(h282_IndicationPDU_vals));
if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "IndicationPDU/%s", p);
#.END
|