OVERVIEW   INDEX   DEPRECATED   HELP   CORRESPONDENCES  


Module Parameters   Data Types   Component Types   Port Types   Constants   Templates   Signatures   Functions   Altsteps   Test Cases  

Module IP_ASP_TypeDefs


Import Declarations:

Groups:

Data Types Summary
PortNumber_Type
IP_DrbId_Type
IPsec_SPI_Type
Datagram_Content_Type
TCP_Data_Type
InternetProtocol_Type
IPsec_IntegrityAlgorithm_Type
IPsec_CipheringAlgorithm_Type
InternetApplication_Type
IPv4_AddrInfo_Type
IPv6_AddrInfo_Type
IP_Socket_Type
IP_Connection_Type
IP_EUTRA_DrbInfo_Type
IP_UTRAN_GERAN_DrbInfo_Type
IP_RoutingInfo_Type
IPsec_SecurityKeys_Type
IPsec_SecurityAssociation_Type
IPsec_Configure_Type
IPsec_Release_Type
Datagram_DL_Type
Datagram_UL_Type
TCP_ConnectRequest_Type
TCP_Listen_Type
UDP_SocketReq_Type
ICMP_SocketReq_Type
IP_SOCKET_CTRL_REQ
IP_SOCKET_DATA_REQ
IP_SOCKET_CTRL_IND
IP_SOCKET_DATA_IND
IP_RoutingTable_Type
IPsec_SecurityAssociationList_Type
IP_SockOptList_Type
IP_AddrInfo_Type
IP_DrbInfo_Type
IP_SockOpt_Type
IP_SocketError_Type
TCP_CtrlRequest_Type
TCP_DataRequest_Type
TCP_CtrlIndication_Type
TCP_DataIndication_Type
UDP_CtrlRequest_Type
UDP_DataRequest_Type
UDP_CtrlIndication_Type
UDP_DataIndication_Type
ICMP_CtrlRequest_Type
ICMP_DataRequest_Type
ICMP_CtrlIndication_Type
ICMP_DataIndication_Type
IP_CtrlRequest_Type
IP_DataRequest_Type
IP_CtrlIndication_Type
IP_DataIndication_Type
DRBMUX_CONFIG_REQ
DRBMUX_COMMON_IND_CNF
IPSEC_CONFIG_REQ
IPSEC_CONFIG_CNF
IP_SOCKET_REQ
IP_SOCKET_IND
Port Types Summary
IP_CONTROL_PORT
IPSEC_CONTROL_PORT
IP_SOCKET_PORT
Constants Summary
tsc_IPsec_SPI_Max

Details

PortNumber_Type
type UInt16_Type PortNumber_Type;

Declared in group IP_Common

IP_DrbId_Type
type integer IP_DrbId_Type;

Declared in group IP_Config

IPsec_SPI_Type
type integer IPsec_SPI_Type (0..tsc_IPsec_SPI_Max);

Declared in group IPsec_Config

Datagram_Content_Type
type octetstring Datagram_Content_Type;

Declared in group IP_SocketHandling.Socket_Datagram

TCP_Data_Type
type octetstring         TCP_Data_Type;

Declared in group IP_SocketHandling.TCP_Socket

InternetProtocol_Type
type enumerated InternetProtocol_Type {
udp,
tcp,
icmp,
icmpv6
  };

Declared in group IP_Common

IPsec_IntegrityAlgorithm_Type
type enumerated IPsec_IntegrityAlgorithm_Type {
hmac_md5_96,
hmac_sha_1_96
  };

Declared in group IPsec_Config

IPsec_CipheringAlgorithm_Type
type enumerated IPsec_CipheringAlgorithm_Type {
des_ede3_cbc,
aes_cbc,
nociph                                      
  };

Declared in group IPsec_Config

InternetApplication_Type
type enumerated InternetApplication_Type { ims, http };

Declared in group IP_SocketHandling.TCP_Socket

IPv4_AddrInfo_Type
type record IPv4_AddrInfo_Type {                      
charstring          Addr                            
  }

Declared in group IP_Common

IPv6_AddrInfo_Type
type record IPv6_AddrInfo_Type {                      
charstring          Addr,                           
UInt32_Type         ScopeId     optional            
  }

Declared in group IP_Common

IP_Socket_Type
type record IP_Socket_Type {                          
IP_AddrInfo_Type    IpAddr      optional,           
PortNumber_Type     Port        optional            
  }

Declared in group IP_Common

IP_Connection_Type
type record IP_Connection_Type {
InternetProtocol_Type Protocol,
IP_Socket_Type        Local     optional,
IP_Socket_Type        Remote    optional
  }

Declared in group IP_Common

IP_EUTRA_DrbInfo_Type
type record IP_EUTRA_DrbInfo_Type {
EUTRA_CellId_Type   CellId,         
IP_DrbId_Type       DrbId  optional 
  }

Declared in group IP_Config

IP_UTRAN_GERAN_DrbInfo_Type
type record IP_UTRAN_GERAN_DrbInfo_Type {
integer             CellId,
IP_DrbId_Type       DrbId  optional 
  }

Declared in group IP_Config

IP_RoutingInfo_Type
type record IP_RoutingInfo_Type {
IP_Connection_Type  IpInfo,         
IP_DrbInfo_Type     DRB
  }

Declared in group IP_Config

IPsec_SecurityKeys_Type
type record IPsec_SecurityKeys_Type {         
bitstring   MD5_96Key       length (128),
bitstring   SHA_1_96Key     length (160),
bitstring   DES_EDE3_CBCKey length (192),
bitstring   AES_CBCKey      length (128)
  }

Declared in group IPsec_Config

IPsec_SecurityAssociation_Type
type record IPsec_SecurityAssociation_Type {  
IPsec_SPI_Type                      SPI,
charstring                          SrcAddress,
charstring                          DestAddress,
UInt16_Type                         SrcPort,
UInt16_Type                         DestPort,
IPsec_IntegrityAlgorithm_Type       IntegrityAlgorithm  optional,    
IPsec_CipheringAlgorithm_Type       CipheringAlgorithm  optional     
  }

Declared in group IPsec_Config

IPsec_Configure_Type
type record IPsec_Configure_Type {    
IPsec_SecurityAssociationList_Type  SA_List,
IPsec_SecurityKeys_Type             SecurityKeys
  }

Declared in group IPsec_Config

IPsec_Release_Type
type record IPsec_Release_Type {      
IPsec_SecurityAssociationList_Type  SA_List
  }

Declared in group IPsec_Config

Datagram_DL_Type
type record Datagram_DL_Type {                
Datagram_Content_Type Buffer                
  }

Declared in group IP_SocketHandling.Socket_Datagram

Datagram_UL_Type
type record Datagram_UL_Type {                
Datagram_Content_Type Buffer,               
IP_DrbInfo_Type       DrbInfo   optional    
  }

Declared in group IP_SocketHandling.Socket_Datagram

TCP_ConnectRequest_Type
type record TCP_ConnectRequest_Type {         
IP_SockOptList_Type         SockOptList,    
InternetApplication_Type    Application     
  }

Declared in group IP_SocketHandling.TCP_Socket

TCP_Listen_Type
type record TCP_Listen_Type {                 
IP_SockOptList_Type         SockOptList,    
InternetApplication_Type    Application     
  }

Declared in group IP_SocketHandling.TCP_Socket

UDP_SocketReq_Type
type record UDP_SocketReq_Type {              
IP_SockOptList_Type         SockOptList     
  }

Declared in group IP_SocketHandling.UDP_Socket

ICMP_SocketReq_Type
type record ICMP_SocketReq_Type {             
IP_SockOptList_Type         SockOptList     
  }

Declared in group IP_SocketHandling.ICMP_Socket

IP_SOCKET_CTRL_REQ
type record IP_SOCKET_CTRL_REQ {
IP_Connection_Type          ConnectionId,
IP_CtrlRequest_Type         Req
  }

Declared in group System_Interface

IP_SOCKET_DATA_REQ
type record IP_SOCKET_DATA_REQ {
IP_Connection_Type          ConnectionId,
IP_DataRequest_Type         Req
  }

Declared in group System_Interface

IP_SOCKET_CTRL_IND
type record IP_SOCKET_CTRL_IND {
IP_Connection_Type          ConnectionId,
IP_CtrlIndication_Type      Ind
  }

Declared in group System_Interface

IP_SOCKET_DATA_IND
type record IP_SOCKET_DATA_IND {
IP_Connection_Type          ConnectionId,
IP_DataIndication_Type      Ind
  }

Declared in group System_Interface

IP_RoutingTable_Type
type record of IP_RoutingInfo_Type IP_RoutingTable_Type

Declared in group IP_Config

IPsec_SecurityAssociationList_Type
type record of IPsec_SecurityAssociation_Type IPsec_SecurityAssociationList_Type

Declared in group IPsec_Config

IP_SockOptList_Type
type record of IP_SockOpt_Type IP_SockOptList_Type

Declared in group IP_SocketHandling.Socket_Common

IP_AddrInfo_Type
type union IP_AddrInfo_Type {
IPv4_AddrInfo_Type  V4,
IPv6_AddrInfo_Type  V6
  }

Declared in group IP_Common

IP_DrbInfo_Type
type union IP_DrbInfo_Type {
IP_EUTRA_DrbInfo_Type       Eutra,
IP_UTRAN_GERAN_DrbInfo_Type Utran,
IP_UTRAN_GERAN_DrbInfo_Type Geran
  }

Declared in group IP_Config

IP_SockOpt_Type
type union IP_SockOpt_Type {          
boolean     SO_BROADCAST            
  }

Declared in group IP_SocketHandling.Socket_Common

IP_SocketError_Type
type union IP_SocketError_Type {      
Null_Type   InvalidAddress,         
integer     System                  
  }

Declared in group IP_SocketHandling.Socket_Common

TCP_CtrlRequest_Type
type union TCP_CtrlRequest_Type {
TCP_ConnectRequest_Type     ConnectReq,     
TCP_Listen_Type             Listen,         
Null_Type                   Close           
  }

Declared in group IP_SocketHandling.TCP_Socket

TCP_DataRequest_Type
type union TCP_DataRequest_Type {
TCP_Data_Type               Send            
  }

Declared in group IP_SocketHandling.TCP_Socket

TCP_CtrlIndication_Type
type union TCP_CtrlIndication_Type {
Null_Type                   ConnectCnf,     
Null_Type                   Accept,         
Null_Type                   Close,          
Null_Type                   CloseCnf        
  }

Declared in group IP_SocketHandling.TCP_Socket

TCP_DataIndication_Type
type union TCP_DataIndication_Type {
TCP_Data_Type               Recv            
  }

Declared in group IP_SocketHandling.TCP_Socket

UDP_CtrlRequest_Type
type union UDP_CtrlRequest_Type {
UDP_SocketReq_Type          SocketReq,      
Null_Type                   Close           
  }

Declared in group IP_SocketHandling.UDP_Socket

UDP_DataRequest_Type
type union UDP_DataRequest_Type {
   Datagram_DL_Type             SendTo          
  }

Declared in group IP_SocketHandling.UDP_Socket

UDP_CtrlIndication_Type
type union UDP_CtrlIndication_Type {
Null_Type                   SocketCnf       
  }

Declared in group IP_SocketHandling.UDP_Socket

UDP_DataIndication_Type
type union UDP_DataIndication_Type {
Datagram_UL_Type            RecvFrom        
  }

Declared in group IP_SocketHandling.UDP_Socket

ICMP_CtrlRequest_Type
type union ICMP_CtrlRequest_Type {
ICMP_SocketReq_Type         SocketReq,      
Null_Type                   Close           
  }

Declared in group IP_SocketHandling.ICMP_Socket

ICMP_DataRequest_Type
type union ICMP_DataRequest_Type {
Datagram_DL_Type            SendTo          
  }

Declared in group IP_SocketHandling.ICMP_Socket

ICMP_CtrlIndication_Type
type union ICMP_CtrlIndication_Type {
Null_Type                   SocketCnf       
  }

Declared in group IP_SocketHandling.ICMP_Socket

ICMP_DataIndication_Type
type union ICMP_DataIndication_Type {
Datagram_UL_Type            RecvFrom        
  }

Declared in group IP_SocketHandling.ICMP_Socket

IP_CtrlRequest_Type
type union IP_CtrlRequest_Type {
TCP_CtrlRequest_Type        TCP,
UDP_CtrlRequest_Type        UDP,
ICMP_CtrlRequest_Type       ICMP
  }

Declared in group IP_SocketHandling.Socket_Primitives

IP_DataRequest_Type
type union IP_DataRequest_Type {
TCP_DataRequest_Type        TCP,
UDP_DataRequest_Type        UDP,
ICMP_DataRequest_Type       ICMP
  }

Declared in group IP_SocketHandling.Socket_Primitives

IP_CtrlIndication_Type
type union IP_CtrlIndication_Type {
TCP_CtrlIndication_Type     TCP,
UDP_CtrlIndication_Type     UDP,
ICMP_CtrlIndication_Type    ICMP,
IP_SocketError_Type         Error
  }

Declared in group IP_SocketHandling.Socket_Primitives

IP_DataIndication_Type
type union IP_DataIndication_Type {
TCP_DataIndication_Type     TCP,
UDP_DataIndication_Type     UDP,
ICMP_DataIndication_Type    ICMP
  }

Declared in group IP_SocketHandling.Socket_Primitives

DRBMUX_CONFIG_REQ
type union DRBMUX_CONFIG_REQ {
IP_RoutingTable_Type        RoutingInfo
  }

Declared in group System_Interface

DRBMUX_COMMON_IND_CNF
type union DRBMUX_COMMON_IND_CNF {
Null_Type   Confirm,                
Null_Type   Error                   
  }

Declared in group System_Interface

IPSEC_CONFIG_REQ
type union IPSEC_CONFIG_REQ {
IPsec_Configure_Type                Configure,
IPsec_Release_Type                  Release
  }

Declared in group System_Interface

IPSEC_CONFIG_CNF
type union IPSEC_CONFIG_CNF {
Null_Type   Confirm,                
Null_Type   Error                   
  }

Declared in group System_Interface

IP_SOCKET_REQ
type union IP_SOCKET_REQ {
IP_SOCKET_CTRL_REQ          CTRL,
IP_SOCKET_DATA_REQ          DATA
  }

Declared in group System_Interface

IP_SOCKET_IND
type union IP_SOCKET_IND {
IP_SOCKET_CTRL_IND          CTRL,
IP_SOCKET_DATA_IND          DATA
  }

Declared in group System_Interface

IP_CONTROL_PORT
type port IP_CONTROL_PORT message {
out DRBMUX_CONFIG_REQ;
in  DRBMUX_COMMON_IND_CNF;
  }

Declared in group System_Interface

IPSEC_CONTROL_PORT
type port IPSEC_CONTROL_PORT message {
out IPSEC_CONFIG_REQ;
in  IPSEC_CONFIG_CNF;
  }

Declared in group System_Interface

IP_SOCKET_PORT
type port IP_SOCKET_PORT message {
out IP_SOCKET_REQ;
in  IP_SOCKET_IND;
  }

Declared in group System_Interface

tsc_IPsec_SPI_Max
const integer tsc_IPsec_SPI_Max := 4294967295

Declared in group IPsec_Config