Lines Matching refs:NIC
10 typedef struct NIC NIC;
11 typedef struct NIC {
13 uint64_t nicNo; // NIC number
15 int (*tx)(NIC *, MBuf *, NICCB, void *); // TX
16 int (*rx)(NIC *, MBuf *, NICCB, void *); // RX
18 LIST_ENTRY(NIC) entries;
19 } NIC;
21 void NIC_AddNIC(NIC *nic);
22 void NIC_RemoveNIC(NIC *nic);
23 NIC *NIC_GetByID(uint64_t nicNo);
24 int NIC_GetMAC(NIC *nic, void *mac);
25 int NIC_TX(NIC *nic, MBuf *mbuf, NICCB cb, void *arg);
26 int NIC_RX(NIC *nic, MBuf *mbuf, NICCB cb, void *arg);