mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
11 lines
273 B
Go
11 lines
273 B
Go
|
package option
|
||
|
|
||
|
import "github.com/sagernet/sing/common/auth"
|
||
|
|
||
|
type NaiveInboundOptions struct {
|
||
|
ListenOptions
|
||
|
Users []auth.User `json:"users,omitempty"`
|
||
|
Network NetworkList `json:"network,omitempty"`
|
||
|
TLS *InboundTLSOptions `json:"tls,omitempty"`
|
||
|
}
|