Function setPort [src]
port is native-endian.
Asserts that the address is ip4 or ip6.
Prototype
pub fn setPort(self: *Ip4Address, port: u16) void
Parameters
self: *Ip4Address
port: u16
Source
pub fn setPort(self: *Ip4Address, port: u16) void {
self.sa.port = mem.nativeToBig(u16, port);
}