mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 04:10:25 +08:00
24 lines
407 B
Go
24 lines
407 B
Go
// Copyright 2021 GoEdge CDN goedge.cdn@gmail.com. All rights reserved.
|
|
|
|
package reporterconfigs
|
|
|
|
type TaskType = string
|
|
|
|
const (
|
|
TaskTypeIPAddr TaskType = "ipAddr"
|
|
)
|
|
|
|
type IPTask struct {
|
|
AddrId int64 `json:"addrId"`
|
|
IP string `json:"ip"`
|
|
Port int `json:"port"`
|
|
}
|
|
|
|
func FindTaskTypeName(taskType TaskType) string {
|
|
switch taskType {
|
|
case TaskTypeIPAddr:
|
|
return "IP地址"
|
|
}
|
|
return ""
|
|
}
|