mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
Add Tun.Name
This commit is contained in:
parent
091b5da950
commit
c21c623174
6 changed files with 261 additions and 237 deletions
|
@ -32,6 +32,14 @@ type NativeTun struct {
|
|||
routerSet bool
|
||||
}
|
||||
|
||||
func (t *NativeTun) Name() (string, error) {
|
||||
return unix.GetsockoptString(
|
||||
int(t.tunFile.Fd()),
|
||||
2, /* #define SYSPROTO_CONTROL 2 */
|
||||
2, /* #define UTUN_OPT_IFNAME 2 */
|
||||
)
|
||||
}
|
||||
|
||||
func New(options Options) (Tun, error) {
|
||||
var tunFd int
|
||||
if options.FileDescriptor == 0 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue