class IPv4Settings
August 13, 2019 ยท View on GitHub
Member values
| Member name | Data type | Description |
|---|---|---|
| ipv4_address | uint32 | IPv4Address |
| ipv4_subnet_mask | uint32 | IPv4SubnetMask |
| ipv4_default_gateway | uint32 | IPv4DefaultGateway |
Member functions
| Function name | Return type | Input type | Description |
|---|---|---|---|
| ipv4_address() | uint32 | void | Returns the current value of ipv4_address. If the ipv4_address is not set, returns 0. |
| set_ipv4_address() | void | uint32 | Sets the value of ipv4_address. After calling this, ipv4_address() will return value. |
| clear_ipv4_address() | void | void | Clears the value of ipv4_address. After calling this, ipv4_address() will return 0. |
| ipv4_subnet_mask() | uint32 | void | Returns the current value of ipv4_subnet_mask. If the ipv4_subnet_mask is not set, returns 0. |
| set_ipv4_subnet_mask() | void | uint32 | Sets the value of ipv4_subnet_mask. After calling this, ipv4_subnet_mask() will return value. |
| clear_ipv4_subnet_mask() | void | void | Clears the value of ipv4_subnet_mask. After calling this, ipv4_subnet_mask() will return 0. |
| ipv4_default_gateway() | uint32 | void | Returns the current value of ipv4_default_gateway. If the ipv4_default_gateway is not set, returns 0. |
| set_ipv4_default_gateway() | void | uint32 | Sets the value of ipv4_default_gateway. After calling this, ipv4_default_gateway() will return value. |
| clear_ipv4_default_gateway() | void | void | Clears the value of ipv4_default_gateway. After calling this, ipv4_default_gateway() will return 0. |
Parent topic: DeviceConfig (C++)