v2ray-core/shell/point/json/connection.go

19 lines
337 B
Go
Raw Normal View History

2015-10-29 22:41:37 +00:00
package json
import (
"encoding/json"
)
type ConnectionConfig struct {
ProtocolString string `json:"protocol"`
SettingsMessage json.RawMessage `json:"settings"`
2015-10-29 22:41:37 +00:00
}
func (c *ConnectionConfig) Protocol() string {
return c.ProtocolString
}
func (c *ConnectionConfig) Settings() []byte {
return []byte(c.SettingsMessage)
2015-10-29 22:41:37 +00:00
}