mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 04:47:40 +03:00
Compare commits
2 commits
dev
...
v0.6.0-alp
Author | SHA1 | Date | |
---|---|---|---|
|
8fe04d1369 | ||
|
6e1285b5d8 |
2 changed files with 8 additions and 3 deletions
|
@ -1,6 +1,7 @@
|
|||
package badoption
|
||||
|
||||
import (
|
||||
"context"
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
"github.com/sagernet/sing/common/json"
|
||||
)
|
||||
|
@ -15,13 +16,13 @@ func (l Listable[T]) MarshalJSON() ([]byte, error) {
|
|||
return json.Marshal(arrayList)
|
||||
}
|
||||
|
||||
func (l *Listable[T]) UnmarshalJSON(content []byte) error {
|
||||
err := json.UnmarshalDisallowUnknownFields(content, (*[]T)(l))
|
||||
func (l *Listable[T]) UnmarshalJSONContext(ctx context.Context, content []byte) error {
|
||||
err := json.UnmarshalContextDisallowUnknownFields(ctx, content, (*[]T)(l))
|
||||
if err == nil {
|
||||
return nil
|
||||
}
|
||||
var singleItem T
|
||||
newError := json.UnmarshalDisallowUnknownFields(content, &singleItem)
|
||||
newError := json.UnmarshalContextDisallowUnknownFields(ctx, content, &singleItem)
|
||||
if newError != nil {
|
||||
return E.Errors(err, newError)
|
||||
}
|
||||
|
|
|
@ -104,3 +104,7 @@ func (c *Conn) SetReadDeadline(t time.Time) error {
|
|||
func (c *Conn) SetWriteDeadline(t time.Time) error {
|
||||
return os.ErrInvalid
|
||||
}
|
||||
|
||||
func (c *Conn) Upstream() any {
|
||||
return c.writer
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue