Add Tun.Name

This commit is contained in:
世界 2024-11-28 14:27:11 +08:00
parent 091b5da950
commit c21c623174
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
6 changed files with 261 additions and 237 deletions

View file

@ -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 {