mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
19 lines
337 B
Go
19 lines
337 B
Go
package json
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
type ConnectionConfig struct {
|
|
ProtocolString string `json:"protocol"`
|
|
SettingsMessage json.RawMessage `json:"settings"`
|
|
}
|
|
|
|
func (c *ConnectionConfig) Protocol() string {
|
|
return c.ProtocolString
|
|
}
|
|
|
|
func (c *ConnectionConfig) Settings() []byte {
|
|
return []byte(c.SettingsMessage)
|
|
}
|