mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 11:57:37 +03:00
Add AnyTLS protocol
This commit is contained in:
parent
067f6a6564
commit
f7aa139919
15 changed files with 489 additions and 0 deletions
24
option/anytls.go
Normal file
24
option/anytls.go
Normal file
|
@ -0,0 +1,24 @@
|
|||
package option
|
||||
|
||||
import "github.com/sagernet/sing/common/json/badoption"
|
||||
|
||||
type AnyTLSInboundOptions struct {
|
||||
ListenOptions
|
||||
InboundTLSOptionsContainer
|
||||
Users []AnyTLSUser `json:"users,omitempty"`
|
||||
PaddingScheme badoption.Listable[string] `json:"padding_scheme,omitempty"`
|
||||
}
|
||||
|
||||
type AnyTLSUser struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Password string `json:"password,omitempty"`
|
||||
}
|
||||
|
||||
type AnyTLSOutboundOptions struct {
|
||||
DialerOptions
|
||||
ServerOptions
|
||||
OutboundTLSOptionsContainer
|
||||
Password string `json:"password,omitempty"`
|
||||
IdleSessionCheckInterval badoption.Duration `json:"idle_session_check_interval,omitempty"`
|
||||
IdleSessionTimeout badoption.Duration `json:"idle_session_timeout,omitempty"`
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue