wireshark/asn1/s4406/s4406.cnf
Anders Broman c33182b898 From Graeme Lunt:
Here are a number of small patches for asn1 based dissectors:

acse:
  release request/response column information (many X.400/X.500 unbinds are
empty)
  "standardised" PNAME to "ISO 8650-1 OSI Association Control Service"
  fix for crash when using EXTERNAL dissector

rtse:
  column information when attempting a resume

x509if:
  generation of LDAP-style DNs from RDNSequences 
  new function x509if_get_last_dn() to get the last DN generated.

x509af:
  DSS parameters
  certificate extension naming
  subject naming of certificate

x509sat:
  Guide syntax (as SET now supported)
  PDU exports.
  
cms:
  verification of message digest attribute (SHA-1 and MD5)
  
ess:
  enumerated/restrictive/permissive/informative security categories

x411:
  generation of string encoding of X.400 addresses, trace information and message identifiers.

s4406:
  separate types for primary and copy precedence to allow better filtering (e.g. primary precedence = flash)
  priority-level-qualifier


svn path=/trunk/; revision=16508
2005-11-16 07:13:12 +00:00

73 lines
2.5 KiB
INI

#.MODULE_IMPORT
MTSAbstractService x411
IPMSInformationObjects x420
#.INCLUDE ../x411/x411-exp.cnf
#.INCLUDE ../x420/x420-exp.cnf
#.TYPE_RENAME
AddressListDesignator/type AddressListType
OtherRecipientDesignator/type OtherRecipientType
#.FIELD_RENAME
AddressListDesignator/type address_list_type
MessageType/type message_type_type
OtherRecipientDesignator/type other_recipient_type
#.PDU
PrimaryPrecedence
CopyPrecedence
MessageType
AddressListDesignator
ExemptedAddress
ExtendedAuthorisationInfo
DistributionCodes
HandlingInstructions
MessageInstructions
CodressMessage
OriginatorReference
OtherRecipientDesignator
PilotInformation
Acp127MessageIdentifier
OriginatorPlad
SecurityInformationLabels
#.REGISTER
PrimaryPrecedence B "1.3.26.0.4406.0.2.0" "primary-precedence"
CopyPrecedence B "1.3.26.0.4406.0.2.1" "copy-precedence"
MessageType B "1.3.26.0.4406.0.2.2" "message-type"
AddressListDesignator B "1.3.26.0.4406.0.2.3" "address-list-indicator"
ExemptedAddress B "1.3.26.0.4406.0.2.4" "exempted-address"
ExtendedAuthorisationInfo B "1.3.26.0.4406.0.2.5" "extended-authorisation-info"
DistributionCodes B "1.3.26.0.4406.0.2.6" "distribution-codes"
HandlingInstructions B "1.3.26.0.4406.0.2.7" "handling-instructions"
MessageInstructions B "1.3.26.0.4406.0.2.8" "message-instructions"
CodressMessage B "1.3.26.0.4406.0.2.9" "codress-message"
OriginatorReference B "1.3.26.0.4406.0.2.10" "originator-reference"
OtherRecipientDesignator B "1.3.26.0.4406.0.2.11" "other-recipients-indicator"
PilotInformation B "1.3.26.0.4406.0.2.12" "pilot-forwarding-info"
Acp127MessageIdentifier B "1.3.26.0.4406.0.2.13" "acp127-message-identifierr"
OriginatorPlad B "1.3.26.0.4406.0.2.14" "originator-plad"
SecurityInformationLabels B "1.3.26.0.4406.0.2.17" "information-labels"
PriorityLevelQualifier B "1.3.26.0.4406.0.8.0" "priority-level-qualifier"
#.FN_BODY T_dist_value
/* XXX: not implemented */
#.FN_PARS PrimaryPrecedence
VAL_PTR=&precedence
#.FN_BODY PrimaryPrecedence
int precedence = -1;
%(DEFAULT_BODY)s
if((precedence != -1) && check_col(pinfo->cinfo, COL_INFO))
col_append_fstr(pinfo->cinfo, COL_INFO, " (primary=%%s)", val_to_str(precedence, s4406_PrimaryPrecedence_vals, "precedence(%%d)"));
#.FN_PARS CopyPrecedence
VAL_PTR=&precedence
#.FN_BODY CopyPrecedence
int precedence = -1;
%(DEFAULT_BODY)s
if((precedence != -1) && check_col(pinfo->cinfo, COL_INFO))
col_append_fstr(pinfo->cinfo, COL_INFO, " (copy=%%s)", val_to_str(precedence, s4406_CopyPrecedence_vals, "precedence(%%d)"));