frp/pkg/config/legacy
2026-03-07 23:10:19 +08:00
..
client.go update golangci-lint version (#4817) 2025-06-25 11:40:23 +08:00
conversion.go pkg: use modern Go stdlib functions to simplify code (#5209) 2026-03-06 22:14:46 +08:00
parse.go optimize some code (#3801) 2023-11-27 15:47:49 +08:00
proxy.go refactor: fix modernize lint issues (#5215) 2026-03-07 23:10:19 +08:00
README.md support yaml/json/toml configuration format, make ini deprecated (#3599) 2023-09-06 10:18:02 +08:00
server.go client, pkg, server, test: replaced 'interface{}' with 'any' (#4611) 2025-01-02 11:24:08 +08:00
utils.go pkg: use modern Go stdlib functions to simplify code (#5209) 2026-03-06 22:14:46 +08:00
value.go support yaml/json/toml configuration format, make ini deprecated (#3599) 2023-09-06 10:18:02 +08:00
visitor.go refactor: fix modernize lint issues (#5215) 2026-03-07 23:10:19 +08:00

So far, there is no mature Go project that does well in parsing *.ini files.

By comparison, we have selected an open source project: https://github.com/go-ini/ini.

This library helped us solve most of the key-value matching, but there are still some problems, such as not supporting parsing map.

We add our own logic on the basis of this library. In the current situationwhich, we need to complete the entire Unmarshal in two steps:

  • Step#1, use go-ini to complete the basic parameter matching;
  • Step#2, parse our custom parameters to realize parsing special structure, like map, array.

Some of the keywords in tag(like inline, extends, etc.) may be different from standard libraries such as json and protobuf in Go. For details, please refer to the library documentation: https://ini.unknwon.io/docs/intro.