mirror of https://github.com/v2ray/v2ray-core
24 lines
593 B
Go
24 lines
593 B
Go
package json
|
|
|
|
import (
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
|
v2netjson "github.com/v2ray/v2ray-core/common/net/json"
|
|
"github.com/v2ray/v2ray-core/config"
|
|
"github.com/v2ray/v2ray-core/config/json"
|
|
)
|
|
|
|
type DokodemoConfig struct {
|
|
Host string `json:"address"`
|
|
Port int `json:"port"`
|
|
Network *v2netjson.NetworkList `json:"network"`
|
|
Timeout int `json:"timeout"`
|
|
|
|
address v2net.Address
|
|
}
|
|
|
|
func init() {
|
|
json.RegisterConfigType("dokodemo-door", config.TypeInbound, func() interface{} {
|
|
return new(DokodemoConfig)
|
|
})
|
|
}
|