OVERVIEW   INDEX   DEPRECATED   HELP   CORRESPONDENCES   |
|
| Data Types Summary | |
|---|---|
| TCP_Data_Type | |
| InternetApplication_Type | |
| TCP_ConnectRequest_Type | |
| TCP_Listen_Type | |
| TCP_CtrlRequest_Type | |
| TCP_DataRequest_Type | |
| TCP_CtrlIndication_Type | |
| TCP_DataIndication_Type | |
type octetstring TCP_Data_Type;
type enumerated InternetApplication_Type { ims, http };
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 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
}