IpAddress.this

Construct the address from 4 bytes.

Calling IpAddress(a, b, c, d) is equivalent to calling IpAddress("a.b.c.d"), but safer as it doesn't have to parse a string to get the address components.

Parameters byte0 = First byte of the address. byte1 = Second byte of the address. byte2 = Third byte of the address. byte3 = Fourth byte of the address.

  1. this(string address)
  2. this(ubyte byte0, ubyte byte1, ubyte byte2, ubyte byte3)
    struct IpAddress
    this
    (
    ubyte byte0
    ,
    ubyte byte1
    ,
    ubyte byte2
    ,
    ubyte byte3
    )
  3. this(uint address)

Meta