OVERVIEW   INDEX   DEPRECATED   HELP   CORRESPONDENCES   |
|
| Data Types Summary | |
|---|---|
| PortNumber_Type | |
| InternetProtocol_Type | |
| IPv4_AddrInfo_Type | |
| IPv6_AddrInfo_Type | |
| IP_Socket_Type | |
| IP_Connection_Type | |
| IP_AddrInfo_Type | |
type UInt16_Type PortNumber_Type;
type enumerated InternetProtocol_Type {
udp,
tcp,
icmp,
icmpv6
};
type record IPv4_AddrInfo_Type {
charstring Addr
}
type record IPv6_AddrInfo_Type {
charstring Addr,
UInt32_Type ScopeId optional
}
type record IP_Socket_Type {
IP_AddrInfo_Type IpAddr optional,
PortNumber_Type Port optional
}
type record IP_Connection_Type {
InternetProtocol_Type Protocol,
IP_Socket_Type Local optional,
IP_Socket_Type Remote optional
}
type union IP_AddrInfo_Type {
IPv4_AddrInfo_Type V4,
IPv6_AddrInfo_Type V6
}