UdpBindCommand
classControl info for binding an UDP socket. To create and bind a socket, send a message to the Udp module with kind=UDP_C_BIND and an UdpBindCommand attached.
Both the address and the port may be left unset. If the port is unset, Udp will assign an ephemeral port.
See also: UdpCommandCode
Usage diagram
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Extends
Name | Type | Description |
---|---|---|
UdpControlInfo | class |
Base class for UDP control info classes. The most convenient way to handle Udp is the UdpSocket class, which hides control info from you. |
Fields
Name | Type | Description |
---|---|---|
localAddr | L3Address | |
localPort | int |
Source code
// // Control info for binding an UDP socket. To create and bind a socket, // send a message to the ~Udp module with kind=UDP_C_BIND and an // ~UdpBindCommand attached. // // Both the address and the port may be left unset. If the port is // unset, ~Udp will assign an ephemeral port. // // @see ~UdpCommandCode // class UdpBindCommand extends UdpControlInfo { L3Address localAddr; int localPort = -1; }File: src/inet/transportlayer/contract/udp/UdpControlInfo.msg