|
ra8-firmware 0.1.0
Bare-metal firmware for the Renesas RA8 family (RA8D2 / RA8P1)
|
What the DHCP bring-up learned, for the verdict and the console. More...
#include <c6_join.h>
Data Fields | |
| uint32_t | ip |
| Leased station address, or zero on failure. | |
| uint32_t | mask |
| Subnet mask from the lease. | |
| uint32_t | gateway |
| Default gateway from the lease; the ping target. | |
| uint32_t | dhcp_server |
| Address of the DHCP server that answered. | |
| bool | ping_ok |
| A gateway ICMP echo reply was received. | |
What the DHCP bring-up learned, for the verdict and the console.
Filled by c6_join_net_up. Every address is a NetX packed IPv4 ULONG (host order), so c6_join_put_ip prints it directly.
| uint32_t c6_join_lease::dhcp_server |
Address of the DHCP server that answered.
Definition at line 166 of file c6_join.h.
Referenced by c6_join_phase_ip(), and priv_net_dhcp().
| uint32_t c6_join_lease::gateway |
Default gateway from the lease; the ping target.
Definition at line 165 of file c6_join.h.
Referenced by c6_join_net_up(), c6_join_phase_ip(), and priv_net_dhcp().
| uint32_t c6_join_lease::ip |
Leased station address, or zero on failure.
Definition at line 163 of file c6_join.h.
Referenced by c6_join_phase_ip(), and priv_net_dhcp().
| uint32_t c6_join_lease::mask |
Subnet mask from the lease.
Definition at line 164 of file c6_join.h.
Referenced by c6_join_phase_ip(), and priv_net_dhcp().
| bool c6_join_lease::ping_ok |
A gateway ICMP echo reply was received.
Definition at line 167 of file c6_join.h.
Referenced by c6_join_net_up(), and c6_join_phase_ip().