mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 04:17:36 +03:00
Refactor inbound/outbound options struct
This commit is contained in:
parent
36b0f2e91a
commit
6ddcd3954d
31 changed files with 844 additions and 697 deletions
|
@ -17,6 +17,23 @@ type InboundTLSOptions struct {
|
|||
Reality *InboundRealityOptions `json:"reality,omitempty"`
|
||||
}
|
||||
|
||||
type InboundTLSOptionsContainer struct {
|
||||
TLS *InboundTLSOptions `json:"tls,omitempty"`
|
||||
}
|
||||
|
||||
type InboundTLSOptionsWrapper interface {
|
||||
TakeInboundTLSOptions() *InboundTLSOptions
|
||||
ReplaceInboundTLSOptions(options *InboundTLSOptions)
|
||||
}
|
||||
|
||||
func (o *InboundTLSOptionsContainer) TakeInboundTLSOptions() *InboundTLSOptions {
|
||||
return o.TLS
|
||||
}
|
||||
|
||||
func (o *InboundTLSOptionsContainer) ReplaceInboundTLSOptions(options *InboundTLSOptions) {
|
||||
o.TLS = options
|
||||
}
|
||||
|
||||
type OutboundTLSOptions struct {
|
||||
Enabled bool `json:"enabled,omitempty"`
|
||||
DisableSNI bool `json:"disable_sni,omitempty"`
|
||||
|
@ -33,6 +50,23 @@ type OutboundTLSOptions struct {
|
|||
Reality *OutboundRealityOptions `json:"reality,omitempty"`
|
||||
}
|
||||
|
||||
type OutboundTLSOptionsContainer struct {
|
||||
TLS *OutboundTLSOptions `json:"tls,omitempty"`
|
||||
}
|
||||
|
||||
type OutboundTLSOptionsWrapper interface {
|
||||
TakeOutboundTLSOptions() *OutboundTLSOptions
|
||||
ReplaceOutboundTLSOptions(options *OutboundTLSOptions)
|
||||
}
|
||||
|
||||
func (o *OutboundTLSOptionsContainer) TakeOutboundTLSOptions() *OutboundTLSOptions {
|
||||
return o.TLS
|
||||
}
|
||||
|
||||
func (o *OutboundTLSOptionsContainer) ReplaceOutboundTLSOptions(options *OutboundTLSOptions) {
|
||||
o.TLS = options
|
||||
}
|
||||
|
||||
type InboundRealityOptions struct {
|
||||
Enabled bool `json:"enabled,omitempty"`
|
||||
Handshake InboundRealityHandshakeOptions `json:"handshake,omitempty"`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue