mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-10 06:16:53 -05:00
20 lines
419 B
Go
20 lines
419 B
Go
|
package tun
|
||
|
|
||
|
import (
|
||
|
"gvisor.dev/gvisor/pkg/tcpip"
|
||
|
"gvisor.dev/gvisor/pkg/tcpip/stack"
|
||
|
)
|
||
|
|
||
|
func CreateNIC(nicID tcpip.NICID, linkEndpoint stack.LinkEndpoint) StackOption {
|
||
|
return func(s *stack.Stack) error {
|
||
|
if err := s.CreateNICWithOptions(nicID, linkEndpoint,
|
||
|
stack.NICOptions{
|
||
|
Disabled: false,
|
||
|
QDisc: nil,
|
||
|
}); err != nil {
|
||
|
return newError("failed to create NIC:", err)
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
}
|