mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-02-20 23:47:21 -05:00
chore: rename DeviceCreator
This commit is contained in:
parent
a3728b6abc
commit
4276ee9464
@ -16,4 +16,4 @@ type Options struct {
|
||||
MTU uint32
|
||||
}
|
||||
|
||||
type NewTUNFunc func(Options) (Device, error)
|
||||
type DeviceCreator func(Options) (Device, error)
|
||||
|
@ -9,6 +9,8 @@ import (
|
||||
"gvisor.dev/gvisor/pkg/tcpip/transport/udp"
|
||||
)
|
||||
|
||||
type StackOption func(*stack.Stack) error
|
||||
|
||||
func CreateStack(_ stack.LinkEndpoint) (*stack.Stack, error) {
|
||||
s := stack.New(stack.Options{
|
||||
NetworkProtocols: []stack.NetworkProtocolFactory{
|
||||
|
@ -31,9 +31,8 @@ func (t *TUN) Type() interface{} {
|
||||
}
|
||||
|
||||
func (t *TUN) Start() error {
|
||||
var newDeviceFunc device.NewTUNFunc
|
||||
newDeviceFunc = tun.New
|
||||
device, err := newDeviceFunc(device.Options{
|
||||
DeviceCreator := tun.New
|
||||
device, err := DeviceCreator(device.Options{
|
||||
Name: t.config.Name,
|
||||
MTU: t.config.Mtu,
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user