aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/conf/parser.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--conf/parser.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/conf/parser.go b/conf/parser.go
index e98a0244..88802688 100644
--- a/conf/parser.go
+++ b/conf/parser.go
@@ -13,6 +13,8 @@ import (
"strconv"
"strings"
"time"
+
+ "golang.org/x/text/encoding/unicode"
)
type ParseError struct {
@@ -338,6 +340,23 @@ func FromWgQuick(s string, name string) (*Config, error) {
return &conf, nil
}
+func FromWgQuickWithUnknownEncoding(s string, name string) (*Config, error) {
+ c, firstErr := FromWgQuick(s, name)
+ if firstErr == nil {
+ return c, nil
+ }
+ for _, encoding := range unicode.All {
+ decoded, err := encoding.NewDecoder().String(s)
+ if err == nil {
+ c, err := FromWgQuick(decoded, name)
+ if err == nil {
+ return c, nil
+ }
+ }
+ }
+ return nil, firstErr
+}
+
func FromUAPI(s string, existingConfig *Config) (*Config, error) {
lines := strings.Split(s, "\n")
parserState := inInterfaceSection