home *** CD-ROM | disk | FTP | other *** search
/ ftp.muug.mb.ca / 2014.06.ftp.muug.mb.ca.tar / ftp.muug.mb.ca / pub / openh323.tar.gz / openh323.tar / openh323 / src / h4508.asn < prev    next >
Text File  |  2001-05-03  |  1KB  |  58 lines

  1. Name-Operations
  2. {
  3.   itu-t recommendation h 450 8 version1(0) name-operations(0)
  4. }
  5.  
  6. DEFINITIONS AUTOMATIC TAGS ::=
  7. BEGIN
  8.  
  9.   IMPORTS Extension FROM H4501 -- Manufacturer-specific-service-extension-definition
  10.           {
  11.             itu-t recommendation h 450 1 version1 (0) msi-definition (18) 
  12.           }
  13.  
  14.           MixedExtension FROM H4505 -- Call-Hold-Operations 
  15.           {
  16.             itu-t recommendation h 450 4 version1(0) call-hold-operations(0)
  17.           };
  18.  
  19.   NameOperations ::= ENUMERATED
  20.   {
  21.     callingName(0),
  22.     alertingName(1),
  23.     connectedName(2),
  24.     busyName(3)
  25.   }
  26.  
  27.   Name ::= CHOICE
  28.   {
  29.     namePresentationAllowed    NamePresentationAllowed,
  30.     namePresentationRestricted NamePresentationRestricted,
  31.     nameNotAvailable           NULL,
  32.     ...
  33.   }
  34.  
  35.   NamePresentationAllowed ::= CHOICE
  36.   {
  37.     simpleName     SimpleName,
  38.     extendedName ExtendedName,
  39.     ...
  40.   }
  41.  
  42.   NamePresentationRestricted ::= CHOICE
  43.   {
  44.     simpleName     SimpleName,
  45.     extendedName   ExtendedName,
  46.     restrictedNull NULL, -- only used in case of interworking where other network
  47.                          -- provides indication that the name is restricted without
  48.                          -- the name itself
  49.     ...
  50.   }
  51.  
  52.   SimpleName ::= OCTET STRING (SIZE (1..50))
  53.  
  54.   ExtendedName ::= BMPString(SIZE (1..256)) --Basic ISO/IEC 10646-1 (Unicode)
  55.  
  56. END -- of Name-Operations
  57.  
  58.