Skip to content
Closed
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
4 changes: 2 additions & 2 deletions bbox/lan.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ type LanHost struct {
Ethernet struct {
Physicalport int `json:"physicalport"`
Logicalport int `json:"logicalport"`
Speed string `json:"speed"`
Speed int `json:"speed"`
Mode string `json:"mode"`
} `json:"ethernet"`
Stb struct {
Product string `json:"product"`
Serial string `json:"serial"`
} `json:"stb,omitempty"`
Wireless struct {
Band string `json:"band"`
Band interface{} `json:"band"`
Rssi0 interface{} `json:"rssi0"` // String or int ? "rssi0":"-76","rssi1":0,"rssi2":0
Rssi1 interface{} `json:"rssi1"`
Rssi2 interface{} `json:"rssi2"`
Expand Down
Loading