wifictld-analyzer/capture/wifi_client.go

21 lines
586 B
Go
Raw Normal View History

package capture
2018-06-02 01:00:54 +02:00
import (
"time"
2018-06-02 01:00:54 +02:00
"dev.sum7.eu/genofire/wifictld-analyzer/data"
2018-06-02 01:00:54 +02:00
)
// WifiClient datatype of wifictld
type WifiClient struct {
Addr data.HardwareAddr `json:"addr"`
2019-03-01 10:54:19 +01:00
Time time.Time `json:"time"`
TryProbe uint16 `json:"try_probe"`
TryAuth uint16 `json:"try_auth"`
Connected bool `json:"connected"`
Authed bool `json:"authed"`
FreqHighest uint16 `json:"freq_highest"`
SignalLowFreq int16 `json:"signal_low_freq"`
SignalHighFreq int16 `json:"signal_high_freq"`
2018-06-02 01:00:54 +02:00
}