Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ func (c *Client) BSS(ifi *Interface) (*BSS, error) {
return c.c.BSS(ifi)
}

// PHYs returns a list of the system's WiFi devices.
func (c *Client) PHYs() ([]*PHY, error) { return c.c.PHYs() }

// PHY returns the WiFi device corresponding to the specified index.
func (c *Client) PHY(index uint32) (*PHY, error) { return c.c.PHY(index) }

// StationInfo retrieves all station statistics about a WiFi interface.
//
// Since v0.2.0: if there are no stations, an empty slice is returned instead
Expand Down
Loading
Loading