github.com/inazumav/sing-box@v0.0.0-20230926072359-ab51429a14f1/option/naive.go (about)

     1  package option
     2  
     3  import "github.com/sagernet/sing/common/auth"
     4  
     5  type NaiveInboundOptions struct {
     6  	ListenOptions
     7  	Users   []auth.User        `json:"users,omitempty"`
     8  	Network NetworkList        `json:"network,omitempty"`
     9  	TLS     *InboundTLSOptions `json:"tls,omitempty"`
    10  }