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