IpAddress.this

Construct the address from a string.

Here address can be either a decimal address (ex: "192.168.1.56") or a network name (ex: "localhost").

  1. this(const(char)[] address)
    struct IpAddress
    this
    (
    const(char)[] address
    )
  2. this(ubyte byte0, ubyte byte1, ubyte byte2, ubyte byte3)
  3. this(uint address)

Parameters

address const(char)[]

IP address or network name.

Meta