mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 04:17:36 +03:00
Update UoT protocol
This commit is contained in:
parent
a3a5185b15
commit
43f31b40ba
16 changed files with 186 additions and 118 deletions
30
option/udp_over_tcp.go
Normal file
30
option/udp_over_tcp.go
Normal file
|
@ -0,0 +1,30 @@
|
|||
package option
|
||||
|
||||
import (
|
||||
"github.com/sagernet/sing-box/common/json"
|
||||
"github.com/sagernet/sing/common/uot"
|
||||
)
|
||||
|
||||
type _UDPOverTCPOptions struct {
|
||||
Enabled bool `json:"enabled,omitempty"`
|
||||
Version uint8 `json:"version,omitempty"`
|
||||
}
|
||||
|
||||
type UDPOverTCPOptions _UDPOverTCPOptions
|
||||
|
||||
func (o UDPOverTCPOptions) MarshalJSON() ([]byte, error) {
|
||||
switch o.Version {
|
||||
case 0, uot.Version:
|
||||
return json.Marshal(o.Enabled)
|
||||
default:
|
||||
return json.Marshal(_UDPOverTCPOptions(o))
|
||||
}
|
||||
}
|
||||
|
||||
func (o *UDPOverTCPOptions) UnmarshalJSON(bytes []byte) error {
|
||||
err := json.Unmarshal(bytes, &o.Enabled)
|
||||
if err == nil {
|
||||
return nil
|
||||
}
|
||||
return json.Unmarshal(bytes, (*_UDPOverTCPOptions)(o))
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue