wireshark/asn1/ansi_map/ansi_map.cnf

58 lines
1.3 KiB
Text
Raw Normal View History

# ansi_map.cnf
# ansi_map conformation file
# Copyright 2005 Anders Broman
# $Id$
#.EXPORTS
#.PDU
AuthenticationDirective
AuthenticationDirectiveRes
OriginationRequest
OriginationRequestRes
#.NO_EMIT
#.TYPE_RENAME
#.FIELD_RENAME
#.FN_BODY InvokeParameters
proto_tree_add_item(tree, hf_ansi_map_invokeParameters, tvb, offset,-1,FALSE);
offset = dissect_invokeData(pinfo, tree, tvb, offset);
#.FN_BODY ReturnParameters
proto_tree_add_item(tree, hf_ansi_map_returnResult, tvb, offset,-1,FALSE);
offset = dissect_returnData(pinfo, tree, tvb, offset);
#.FN_BODY ErrorParameters
#.FN_BODY RejectParameters
#.FN_PARS PrivateOperationCode
VAL_PTR = &OperationCode
#.FN_BODY PrivateOperationCode
%(DEFAULT_BODY)s
proto_tree_add_item(tree, hf_ansi_map_op_code_fam, tvb, offset-2,1,FALSE);
proto_tree_add_item(tree, hf_ansi_map_op_code, tvb, offset-1,1,FALSE);
#.FN_PARS DigitsType
VAL_PTR = &parameter_tvb
#.FN_BODY DigitsType
tvbuff_t *parameter_tvb = NULL;
%(DEFAULT_BODY)s
if (parameter_tvb){
dissect_ansi_map_digits_type(parameter_tvb,pinfo,tree);
}
#.TYPE_ATTR
ControlChannelMode TYPE = FT_UINT8 DISPLAY = BASE_DEC STRINGS = VALS(ansi_map_ControlChannelMode_vals)
ServiceRedirectionCause TYPE = FT_UINT8 DISPLAY = BASE_DEC STRINGS = VALS(ansi_map_ServiceRedirectionCause_vals)
#.END