OVERVIEW   INDEX   DEPRECATED   HELP   CORRESPONDENCES   |
|
| Port Types Summary | |
|---|---|
| IMS_IP_CTRL_PORT | |
| IP_IMS_CTRL_PORT | |
| IMS_IP_CLIENT_PORT | |
| IP_IMS_CLIENT_PORT | |
| IMS_IP_SERVER_PORT | |
| IP_IMS_SERVER_PORT | |
type RequestUnion IMS_Request_Type with { encode "SIPCodec"};
type Response IMS_Response_Type with { encode "SIPCodec"};
type enumerated IMS_ProtectedUnprotected_Type {protected, unprotected};
type record IMS_RoutingInfo_Type {
InternetProtocol_Type Protocol,
IMS_ProtectedUnprotected_Type Security optional,
IP_AddrInfo_Type UE_Address optional,
IP_AddrInfo_Type NW_Address optional
}
type record IMS_DATA_REQ {
IMS_RoutingInfo_Type RoutingInfo,
IMS_Request_Type Request
}
type record IMS_DATA_RSP {
IMS_RoutingInfo_Type RoutingInfo,
IMS_Response_Type Response
}
type record IMS_UnprotectedPorts_Type {
PortNumber_Type Port_us,
PortNumber_Type Port_ps
}
type record IMS_ProtectedPorts_Type {
PortNumber_Type Port_us,
PortNumber_Type Port_uc,
PortNumber_Type Port_ps,
PortNumber_Type Port_pc
}
type record IMS_SPIs_Type {
IPsec_SPI_Type SPI_us,
IPsec_SPI_Type SPI_uc,
IPsec_SPI_Type SPI_ps optional,
IPsec_SPI_Type SPI_pc optional
}
type record IMS_SecurityInfo_Type {
IMS_ProtectedPorts_Type ProtectedPorts,
IMS_SPIs_Type SPIs,
IPsec_IntegrityAlgorithm_Type IntegrityAlgorithm,
IPsec_CipheringAlgorithm_Type CipheringAlgorithm
}
type record IMS_RegistrationInfo_Type {
IP_AddrInfo_Type NW_Address,
IP_AddrInfo_Type UE_Address,
IMS_SecurityInfo_Type SecurityInfo optional
}
type record IMS_PortsAndSecurityConfigReq_Type {
PortNumber_Type UnprotectedPort_us optional,
IMS_RegistrationInfo_Type RegistrationInfo
}
type record IMS_PortsAndSecurityConfigCnf_Type {
IMS_ProtectedPorts_Type ProtectedPorts optional,
IMS_SPIs_Type SPIs optional
}
type union IMS_CONFIG_REQ {
IPsec_SecurityKeys_Type InstallKey,
IMS_PortsAndSecurityConfigReq_Type PortsAndSecurityConfig
}
type union IMS_CONFIG_CNF {
Null_Type InstallKey,
IMS_PortsAndSecurityConfigCnf_Type PortsAndSecurityConfig
}
type port IMS_IP_CTRL_PORT message {
out IMS_CONFIG_REQ;
in IMS_CONFIG_CNF;
}
type port IP_IMS_CTRL_PORT message {
out IMS_CONFIG_CNF;
in IMS_CONFIG_REQ;
}
type port IMS_IP_CLIENT_PORT message {
out IMS_DATA_REQ;
in IMS_DATA_RSP;
}
type port IP_IMS_CLIENT_PORT message {
out IMS_DATA_RSP;
in IMS_DATA_REQ;
}
type port IMS_IP_SERVER_PORT message {
out IMS_DATA_RSP;
in IMS_DATA_REQ;
}
type port IP_IMS_SERVER_PORT message {
out IMS_DATA_REQ;
in IMS_DATA_RSP;
}