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 / h4504.asn < prev    next >
Text File  |  2001-04-30  |  2KB  |  80 lines

  1. Call-Hold-Operations
  2. {
  3.   itu-t recommendation h 450 4 version1(0)  call-hold-operations(0)
  4. }
  5.  
  6. DEFINITIONS  AUTOMATIC TAGS  ::=
  7. BEGIN
  8.  
  9.   IMPORTS EXTENSION, Extension FROM H4501 -- Manufacturer-specific-service-extension-definition
  10.   {
  11.     itu-t recommendation h 450 1 version1(0) msi-definition(18)
  12.   }
  13.   
  14.   notAvailable,  invalidCallState,  resourceUnavailable,  supplementaryServiceInteractionNotAllowed FROM H4501-General-Error-List 
  15.   {
  16.     itu-t recommendation h 450 1 version1(0) general-error-list (1)
  17.   }
  18.   
  19.   NonStandardParameter FROM H225; -- H323-MESSAGES
  20.  
  21.  
  22.   CallHoldOperation ::= ENUMERATED
  23.   {
  24.     holdNotific(101),
  25.     retrieveNotific(102),
  26.     remoteHold(103), 
  27.     remoteRetrieve(104)   
  28.   }
  29.  
  30.   HoldNotificArg ::= SEQUENCE
  31.   {
  32.     extensionArg  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  33.     ...
  34.   }
  35.     
  36.   RetrieveNotificArg ::= SEQUENCE
  37.   {
  38.     extensionArg  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  39.     ...
  40.   }
  41.  
  42.   RemoteHoldArg    ::= SEQUENCE
  43.   {
  44.     extensionArg SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  45.     ...
  46.   }
  47.  
  48.   RemoteHoldRes ::= SEQUENCE
  49.   {
  50.     extensionRes SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  51.     ...
  52.   }
  53.  
  54.  
  55.   RemoteRetrieveArg  ::= SEQUENCE
  56.   {
  57.     extensionArg  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  58.     ...
  59.   }
  60.  
  61.   RemoteRetrieveRes  ::= SEQUENCE
  62.   {
  63.     extensionRes SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  64.     ...
  65.   }
  66.  
  67.   MixedExtension ::= CHOICE
  68.   {
  69.     extension Extension, 
  70.     nonStandardData NonStandardParameter
  71.   } 
  72.  
  73.   Extension ::= SEQUENCE
  74.   {
  75.     extensionId OBJECT IDENTIFIER,
  76.     argument OCTET STRING
  77.   }
  78.  
  79. END    -- of Call-Hold-Operations
  80.