Compare commits

...

2 commits

Author SHA1 Message Date
世界
8fe04d1369
udpnat2: Set upstream to writer 2024-11-08 10:22:04 +08:00
世界
6e1285b5d8
badjson: Fix Listable 2024-11-07 21:16:56 +08:00
2 changed files with 8 additions and 3 deletions

View file

@ -1,6 +1,7 @@
package badoption package badoption
import ( import (
"context"
E "github.com/sagernet/sing/common/exceptions" E "github.com/sagernet/sing/common/exceptions"
"github.com/sagernet/sing/common/json" "github.com/sagernet/sing/common/json"
) )
@ -15,13 +16,13 @@ func (l Listable[T]) MarshalJSON() ([]byte, error) {
return json.Marshal(arrayList) return json.Marshal(arrayList)
} }
func (l *Listable[T]) UnmarshalJSON(content []byte) error { func (l *Listable[T]) UnmarshalJSONContext(ctx context.Context, content []byte) error {
err := json.UnmarshalDisallowUnknownFields(content, (*[]T)(l)) err := json.UnmarshalContextDisallowUnknownFields(ctx, content, (*[]T)(l))
if err == nil { if err == nil {
return nil return nil
} }
var singleItem T var singleItem T
newError := json.UnmarshalDisallowUnknownFields(content, &singleItem) newError := json.UnmarshalContextDisallowUnknownFields(ctx, content, &singleItem)
if newError != nil { if newError != nil {
return E.Errors(err, newError) return E.Errors(err, newError)
} }

View file

@ -104,3 +104,7 @@ func (c *Conn) SetReadDeadline(t time.Time) error {
func (c *Conn) SetWriteDeadline(t time.Time) error { func (c *Conn) SetWriteDeadline(t time.Time) error {
return os.ErrInvalid return os.ErrInvalid
} }
func (c *Conn) Upstream() any {
return c.writer
}