You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
393 B
15 lines
393 B
package model |
|
|
|
// ClientStatusResp response clientstatus request just for debug |
|
type ClientStatusResp struct { |
|
QueueLen int `json:"queue_len"` |
|
Clients []*ClientStatus `json:"clients"` |
|
} |
|
|
|
// ClientStatus client status |
|
type ClientStatus struct { |
|
Addr string `json:"addr"` |
|
UpTime int64 `json:"up_time"` |
|
ErrCount int64 `json:"err_count"` |
|
Rate int64 `json:"rate"` |
|
}
|
|
|