OVERVIEW   INDEX   DEPRECATED   HELP   CORRESPONDENCES   |
|
type octetstring Datagram_Content_Type;
type octetstring TCP_Data_Type;
type enumerated InternetApplication_Type { ims, http };
type record Datagram_DL_Type {
Datagram_Content_Type Buffer
}
type record Datagram_UL_Type {
Datagram_Content_Type Buffer,
IP_DrbInfo_Type DrbInfo optional
}
type record TCP_ConnectRequest_Type {
IP_SockOptList_Type SockOptList,
InternetApplication_Type Application
}
type record TCP_Listen_Type {
IP_SockOptList_Type SockOptList,
InternetApplication_Type Application
}
type record UDP_SocketReq_Type {
IP_SockOptList_Type SockOptList
}
type record ICMP_SocketReq_Type {
IP_SockOptList_Type SockOptList
}
type record of IP_SockOpt_Type IP_SockOptList_Type
type union IP_SockOpt_Type {
boolean SO_BROADCAST
}
type union IP_SocketError_Type {
Null_Type InvalidAddress,
integer System
}
type union TCP_CtrlRequest_Type {
TCP_ConnectRequest_Type ConnectReq,
TCP_Listen_Type Listen,
Null_Type Close
}
type union TCP_DataRequest_Type {
TCP_Data_Type Send
}
type union TCP_CtrlIndication_Type {
Null_Type ConnectCnf,
Null_Type Accept,
Null_Type Close,
Null_Type CloseCnf
}
type union TCP_DataIndication_Type {
TCP_Data_Type Recv
}
type union UDP_CtrlRequest_Type {
UDP_SocketReq_Type SocketReq,
Null_Type Close
}
type union UDP_DataRequest_Type {
Datagram_DL_Type SendTo
}
type union UDP_CtrlIndication_Type {
Null_Type SocketCnf
}
type union UDP_DataIndication_Type {
Datagram_UL_Type RecvFrom
}
type union ICMP_CtrlRequest_Type {
ICMP_SocketReq_Type SocketReq,
Null_Type Close
}
type union ICMP_DataRequest_Type {
Datagram_DL_Type SendTo
}
type union ICMP_CtrlIndication_Type {
Null_Type SocketCnf
}
type union ICMP_DataIndication_Type {
Datagram_UL_Type RecvFrom
}
type union IP_CtrlRequest_Type {
TCP_CtrlRequest_Type TCP,
UDP_CtrlRequest_Type UDP,
ICMP_CtrlRequest_Type ICMP
}
type union IP_DataRequest_Type {
TCP_DataRequest_Type TCP,
UDP_DataRequest_Type UDP,
ICMP_DataRequest_Type ICMP
}
type union IP_CtrlIndication_Type {
TCP_CtrlIndication_Type TCP,
UDP_CtrlIndication_Type UDP,
ICMP_CtrlIndication_Type ICMP,
IP_SocketError_Type Error
}
type union IP_DataIndication_Type {
TCP_DataIndication_Type TCP,
UDP_DataIndication_Type UDP,
ICMP_DataIndication_Type ICMP
}