Merge branch 'master' of ssh://git.zx2c4.com/wireguard-go

This commit is contained in:
Mathias Hall-Andersen 2018-05-05 04:15:41 +02:00
commit d8d592787d
3 changed files with 4 additions and 4 deletions

View File

@ -46,7 +46,7 @@ var sockaddrCtlSize uintptr = 32
func CreateTUN(name string) (TUNDevice, error) { func CreateTUN(name string) (TUNDevice, error) {
ifIndex := -1 ifIndex := -1
if (name != "utun") { if name != "utun" {
fmt.Sscanf(name, "utun%d", &ifIndex) fmt.Sscanf(name, "utun%d", &ifIndex)
if ifIndex < 0 { if ifIndex < 0 {
return nil, fmt.Errorf("Interface name must be utun[0-9]*") return nil, fmt.Errorf("Interface name must be utun[0-9]*")

View File

@ -11,6 +11,7 @@ package main
*/ */
import ( import (
"bytes"
"encoding/binary" "encoding/binary"
"errors" "errors"
"fmt" "fmt"
@ -19,7 +20,6 @@ import (
"net" "net"
"os" "os"
"strconv" "strconv"
"bytes"
"strings" "strings"
"syscall" "syscall"
"time" "time"