mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-09 23:24:09 -08:00
Bump github.com/mdlayher/wifi to relax station info restrictions
This commit is contained in:
parent
38a4292360
commit
c0cc85716a
12
vendor/github.com/mdlayher/wifi/client.go
generated
vendored
12
vendor/github.com/mdlayher/wifi/client.go
generated
vendored
|
@ -1,16 +1,11 @@
|
||||||
package wifi
|
package wifi
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"runtime"
|
"runtime"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// errNotStation is returned when attempting to query station info for
|
|
||||||
// an interface which is not a station.
|
|
||||||
errNotStation = errors.New("interface is not a station")
|
|
||||||
|
|
||||||
// errUnimplemented is returned by all functions on platforms that
|
// errUnimplemented is returned by all functions on platforms that
|
||||||
// do not have package wifi implemented.
|
// do not have package wifi implemented.
|
||||||
errUnimplemented = fmt.Errorf("package wifi not implemented on %s/%s",
|
errUnimplemented = fmt.Errorf("package wifi not implemented on %s/%s",
|
||||||
|
@ -50,13 +45,8 @@ func (c *Client) BSS(ifi *Interface) (*BSS, error) {
|
||||||
return c.c.BSS(ifi)
|
return c.c.BSS(ifi)
|
||||||
}
|
}
|
||||||
|
|
||||||
// StationInfo retrieves statistics about a WiFi interface operating in
|
// StationInfo retrieves station statistics about a WiFi interface.
|
||||||
// station mode.
|
|
||||||
func (c *Client) StationInfo(ifi *Interface) (*StationInfo, error) {
|
func (c *Client) StationInfo(ifi *Interface) (*StationInfo, error) {
|
||||||
if ifi.Type != InterfaceTypeStation {
|
|
||||||
return nil, errNotStation
|
|
||||||
}
|
|
||||||
|
|
||||||
return c.c.StationInfo(ifi)
|
return c.c.StationInfo(ifi)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
32
vendor/github.com/mdlayher/wifi/wifi.go
generated
vendored
32
vendor/github.com/mdlayher/wifi/wifi.go
generated
vendored
|
@ -69,6 +69,38 @@ const (
|
||||||
InterfaceTypeNAN
|
InterfaceTypeNAN
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// String returns the string representation of an InterfaceType.
|
||||||
|
func (t InterfaceType) String() string {
|
||||||
|
switch t {
|
||||||
|
case InterfaceTypeUnspecified:
|
||||||
|
return "unspecified"
|
||||||
|
case InterfaceTypeAdHoc:
|
||||||
|
return "ad-hoc"
|
||||||
|
case InterfaceTypeStation:
|
||||||
|
return "station"
|
||||||
|
case InterfaceTypeAP:
|
||||||
|
return "access point"
|
||||||
|
case InterfaceTypeWDS:
|
||||||
|
return "wireless distribution"
|
||||||
|
case InterfaceTypeMonitor:
|
||||||
|
return "monitor"
|
||||||
|
case InterfaceTypeMeshPoint:
|
||||||
|
return "mesh point"
|
||||||
|
case InterfaceTypeP2PClient:
|
||||||
|
return "P2P client"
|
||||||
|
case InterfaceTypeP2PGroupOwner:
|
||||||
|
return "P2P group owner"
|
||||||
|
case InterfaceTypeP2PDevice:
|
||||||
|
return "P2P device"
|
||||||
|
case InterfaceTypeOCB:
|
||||||
|
return "outside context of BSS"
|
||||||
|
case InterfaceTypeNAN:
|
||||||
|
return "near-me area network"
|
||||||
|
default:
|
||||||
|
return fmt.Sprintf("unknown(%d)", t)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// An Interface is a WiFi network interface.
|
// An Interface is a WiFi network interface.
|
||||||
type Interface struct {
|
type Interface struct {
|
||||||
// The index of the interface.
|
// The index of the interface.
|
||||||
|
|
6
vendor/vendor.json
vendored
6
vendor/vendor.json
vendored
|
@ -69,10 +69,10 @@
|
||||||
"revisionTime": "2017-01-04T04:59:06Z"
|
"revisionTime": "2017-01-04T04:59:06Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"checksumSHA1": "XG73RxoI99JeNkxyMStXnlCpXXM=",
|
"checksumSHA1": "FdmT9kyPtsLxk+sgxJmKqcbOCR4=",
|
||||||
"path": "github.com/mdlayher/wifi",
|
"path": "github.com/mdlayher/wifi",
|
||||||
"revision": "1ccab08abb10805297916157a270d05f562e2647",
|
"revision": "567082929344b0af8eb8a2ad6fe4725c0b3c8702",
|
||||||
"revisionTime": "2017-03-01T22:08:15Z"
|
"revisionTime": "2017-03-17T19:22:46Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"checksumSHA1": "VzutdH69PUqRqhrDVv6F91ebQd4=",
|
"checksumSHA1": "VzutdH69PUqRqhrDVv6F91ebQd4=",
|
||||||
|
|
Loading…
Reference in a new issue