1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package option
- import (
- "bytes"
- "strings"
- "github.com/sagernet/sing-box/common/json"
- E "github.com/sagernet/sing/common/exceptions"
- )
- type _Options struct {
- Log *LogOptions `json:"log,omitempty"`
- DNS *DNSOptions `json:"dns,omitempty"`
- Inbounds []Inbound `json:"inbounds,omitempty"`
- Outbounds []Outbound `json:"outbounds,omitempty"`
- Route *RouteOptions `json:"route,omitempty"`
- Experimental *ExperimentalOptions `json:"experimental,omitempty"`
- }
- type Options _Options
- func (o *Options) UnmarshalJSON(content []byte) error {
- decoder := json.NewDecoder(bytes.NewReader(content))
- decoder.DisallowUnknownFields()
- err := decoder.Decode((*_Options)(o))
- if err == nil {
- return nil
- }
- if syntaxError, isSyntaxError := err.(*json.SyntaxError); isSyntaxError {
- prefix := string(content[:syntaxError.Offset])
- row := strings.Count(prefix, "\n") + 1
- column := len(prefix) - strings.LastIndex(prefix, "\n") - 1
- return E.Extend(syntaxError, "row ", row, ", column ", column)
- }
- return err
- }
- type LogOptions struct {
- Disabled bool `json:"disabled,omitempty"`
- Level string `json:"level,omitempty"`
- Output string `json:"output,omitempty"`
- Timestamp bool `json:"timestamp,omitempty"`
- DisableColor bool `json:"-"`
- }
|