mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 21:07:41 +03:00
json: Add UnmarshalDisallowUnknownFields
This commit is contained in:
parent
332e470075
commit
7893a74f75
4 changed files with 37 additions and 1 deletions
12
common/json/internal/contextjson/unmarshal.go
Normal file
12
common/json/internal/contextjson/unmarshal.go
Normal file
|
@ -0,0 +1,12 @@
|
|||
package json
|
||||
|
||||
func UnmarshalDisallowUnknownFields(data []byte, v any) error {
|
||||
var d decodeState
|
||||
d.disallowUnknownFields = true
|
||||
err := checkValid(data, &d.scan)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
d.init(data)
|
||||
return d.unmarshal(v)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue