mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-04 05:00:24 +08:00
33 lines
595 B
Go
33 lines
595 B
Go
package serverconfigs
|
|
|
|
import "encoding/json"
|
|
|
|
func NewUDPProtocolConfigFromJSON(configJSON []byte) (*UDPProtocolConfig, error) {
|
|
config := &UDPProtocolConfig{}
|
|
if len(configJSON) > 0 {
|
|
err := json.Unmarshal(configJSON, config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return config, nil
|
|
}
|
|
|
|
type UDPProtocolConfig struct {
|
|
BaseProtocol `yaml:",inline"`
|
|
}
|
|
|
|
func (this *UDPProtocolConfig) Init() error {
|
|
err := this.InitBase()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// AsJSON 转换为JSON
|
|
func (this *UDPProtocolConfig) AsJSON() ([]byte, error) {
|
|
return json.Marshal(this)
|
|
}
|