#include <arp.h>
Collaboration diagram for ARPEntry:

Definition at line 93 of file arp.h.
Public Member Functions | |
| ARPEntry (ARPEntry_List *head, nsaddr_t dst) | |
| ARPEntry * | nextarp () |
Private Member Functions | |
| LIST_ENTRY (ARPEntry) arp_link_ | |
Private Attributes | |
| int | count_ |
| Packet * | hold_ |
| nsaddr_t | ipaddr_ |
| int | macaddr_ |
| int | up_ |
Friends | |
| class | ARPTable |
|
||||||||||||
|
Definition at line 96 of file arp.h. References count_, hold_, ipaddr_, LIST_INSERT_HEAD, macaddr_, and up_. 00096 { 00097 up_ = macaddr_ = count_ = 0; 00098 ipaddr_ = dst; 00099 hold_ = 0; 00100 LIST_INSERT_HEAD(head, this, arp_link_); 00101 }
|
|
|
|
|
|
Definition at line 102 of file arp.h.
|
|
|
|
|
|
Definition at line 111 of file arp.h. Referenced by ARPEntry(), and ARPTable::arpresolve(). |
|
|
Definition at line 110 of file arp.h. Referenced by ARPEntry(), ARPTable::arpinput(), and ARPTable::arpresolve(). |
|
|
Definition at line 108 of file arp.h. Referenced by ARPEntry(). |
|
|
Definition at line 109 of file arp.h. Referenced by ARPEntry(), ARPTable::arpinput(), and ARPTable::arpresolve(). |
|
|
Definition at line 107 of file arp.h. Referenced by ARPEntry(), ARPTable::arpinput(), and ARPTable::arpresolve(). |
1.4.6