Data Fields | |
uint8_t | if_type |
Interface type. Either IFT_ETHER or IFT_PPP. | |
uint32_t | if_flags |
Interface flags. | |
uint8_t | if_mac [6] |
Hardware net address. | |
uint32_t | if_local_ip |
IP address. | |
uint32_t | if_remote_ip |
Remote IP address for point to point. | |
uint32_t | if_mask |
IP network mask. | |
uint16_t | if_mtu |
Maximum size of a transmission unit. | |
uint16_t | if_pkt_id |
Packet identifier. | |
ARPENTRY * | arpTable |
Linked list of arp entries. | |
MCASTENTRY * | if_mcast |
Linked list of multicast address entries. | |
void(* | if_recv )(NUTDEVICE *, NETBUF *) |
Receive routine. | |
int(* | if_send )(NUTDEVICE *, NETBUF *) |
Send routine. | |
int(* | if_output )(NUTDEVICE *, uint16_t, uint8_t *, NETBUF *) |
Media output routine. | |
int(* | if_ioctl )(NUTDEVICE *, int, void *) |
Interface specific control function. |
Network interface type.
Contains information about the network interface.
Definition at line 190 of file if_var.h.
uint8_t IFNET::if_type |
uint32_t IFNET::if_remote_ip |
uint16_t IFNET::if_mtu |
MCASTENTRY* IFNET::if_mcast |
void(* IFNET::if_recv)(NUTDEVICE *, NETBUF *) |
Receive routine.
int(* IFNET::if_send)(NUTDEVICE *, NETBUF *) |
Send routine.
int(* IFNET::if_ioctl)(NUTDEVICE *, int, void *) |
Interface specific control function.