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 NewTCPProtocolConfigFromJSON(configJSON []byte) (*TCPProtocolConfig, error) {
 | 
						|
	config := &TCPProtocolConfig{}
 | 
						|
	if len(configJSON) > 0 {
 | 
						|
		err := json.Unmarshal(configJSON, config)
 | 
						|
		if err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return config, nil
 | 
						|
}
 | 
						|
 | 
						|
type TCPProtocolConfig struct {
 | 
						|
	BaseProtocol `yaml:",inline"`
 | 
						|
}
 | 
						|
 | 
						|
func (this *TCPProtocolConfig) Init() error {
 | 
						|
	err := this.InitBase()
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
// AsJSON 转换为JSON
 | 
						|
func (this *TCPProtocolConfig) AsJSON() ([]byte, error) {
 | 
						|
	return json.Marshal(this)
 | 
						|
}
 |