mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-10 19:36:32 -05:00
7db39fb566
* add packetconn assembler * let kcp use environment dependency injection * Add destination override to simplified setting * add dtls dialer * add dtls listener * add dtls to default * fix bugs * add debug options to freedom outbound * fix kcp test failure for transport environment
10 lines
218 B
Go
10 lines
218 B
Go
package dtls
|
|
|
|
import "github.com/v2fly/v2ray-core/v5/common/errors"
|
|
|
|
type errPathObjHolder struct{}
|
|
|
|
func newError(values ...interface{}) *errors.Error {
|
|
return errors.New(values...).WithPathObj(errPathObjHolder{})
|
|
}
|