OVERVIEW   INDEX   DEPRECATED   HELP   CORRESPONDENCES   |
|
| Port Types Summary | |
|---|---|
| IMS_SYSTEM_DATA_PORT | |
| IMS_SYSTEM_SIGCOMP_PORT | |
| IMS_SYSTEM_IPCONF_PORT | |
type integer SPI (0..4294967295);
type enumerated DecompFailureType {
stateCreation,
dummy1,
dummy2,
dummy3
};
type record SSPortInfo {
IPAddr ipAddr,
InternetProtocol_Type transportProtocol,
integer portNumber optional
}
type record ASP_DataRequest {
SigCompInfo sigCompInfo optional,
SSPortInfo portInfo,
IMS_Request_Type msg
}
type record ASP_DataResponse {
SigCompInfo sigCompInfo optional,
SSPortInfo portInfo,
IMS_Response_Type msg
}
type record SA {
SPI spi,
IPAddr srcIPaddr,
IPAddr desIPaddr,
integer srcPort,
integer desPort,
IPsec_IntegrityAlgorithm_Type intAlgo,
IPsec_CipheringAlgorithm_Type ciphAlgo
}
type record SingleAddSADCnf {
Status status
}
type record DoubleAddSADReq {
SA sa1,
SA sa2
}
type record DoubleAddSADCnf {
Status status
}
type record InstallKeyReq {
bitstring MD5_96Key length (128),
bitstring SHA_1_96Key length (160),
bitstring DES_EDE3_CBCKey length (192),
bitstring AES_CBCKey length (128)
}
type record InstallKeyCnf {
Status status
}
type record AssignIPaddrReq {
IPAddr p_cscf_Addr,
IPAddr dhcp_Addr,
IPAddr dns_Addr,
IPAddr ue_Addr,
IPAddr peerUE_Addr
}
type record AssignIPaddrCnf {
Status status
}
type record SignallingCompressionReq {
boolean startCompression
}
type record SignallingCompressionCnf {
Status status
}
type record RcvdCompartmentId {
charstring compartmentId
}
type record GenerateSigCompDecompFailReq {
boolean startError,
DecompFailureType mechanism optional
}
type record GenerateSigCompDecompFailCnf {
Status status
}
type record DelSADReq {
SPI spi1,
SPI spi2 optional,
SPI spi3 optional,
SPI spi4 optional,
SPI spi5 optional,
SPI spi6 optional,
SPI spi7 optional,
SPI spi8 optional,
SPI spi9 optional
}
type record DelSADCnf {
Status status
}
type record ReleaseIPConfigurationReq {}
type record ReleaseIPConfigurationCnf {
Status status
}
type record AddPCSCFaddrReq {
IPAddr p_cscf_Addr
}
type record AddPCSCFaddrCnf {
Status status
}
type record UpdateRemotePCSCFPortNumberReq {
integer uePortNumber
}
type record UpdateRemotePCSCFPortNumberCnf {
Status status
}
type union SigCompInfo {
charstring compartmentId,
boolean isCompressed
}
type port IMS_SYSTEM_DATA_PORT message
{
inout ASP_DataRequest;
inout ASP_DataResponse;
}
type port IMS_SYSTEM_SIGCOMP_PORT message
{
out SignallingCompressionReq;
out RcvdCompartmentId;
out GenerateSigCompDecompFailReq;
in SignallingCompressionCnf;
in GenerateSigCompDecompFailCnf;
}
type port IMS_SYSTEM_IPCONF_PORT message
{
out InstallKeyReq;
out DoubleAddSADReq;
out DelSADReq;
out SA;
out ReleaseIPConfigurationReq;
out AddPCSCFaddrReq;
out UpdateRemotePCSCFPortNumberReq;
out AssignIPaddrReq;
in InstallKeyCnf;
in DoubleAddSADCnf;
in SingleAddSADCnf;
in DelSADCnf;
in ReleaseIPConfigurationCnf;
in AddPCSCFaddrCnf;
in UpdateRemotePCSCFPortNumberCnf;
in AssignIPaddrCnf;
}