naive.go 236 B

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