mirror of
https://github.com/maride/pancap.git
synced 2024-11-22 08:54:24 +00:00
10 lines
122 B
Go
10 lines
122 B
Go
|
package arp
|
||
|
|
||
|
type arpStats struct {
|
||
|
macaddr string
|
||
|
asked int
|
||
|
answered int
|
||
|
askedList []string
|
||
|
answeredList []string
|
||
|
}
|