diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2021-01-21 16:55:10 +0100 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2021-02-02 23:56:45 +0100 |
commit | e1a5d3ef583b199871cdad279ae150ec73a6bf58 (patch) | |
tree | f1c31eb6b3d3344c5fbaad6dabbcb242ae7f8f8f | |
parent | fdeae087969bc44c6f3c71dbdd28dee95ea382a2 (diff) |
WIP fix printf
-rw-r--r-- | tun/netstack/tun.go | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tun/netstack/tun.go b/tun/netstack/tun.go index 50da0d7..de37b52 100644 --- a/tun/netstack/tun.go +++ b/tun/netstack/tun.go @@ -721,7 +721,7 @@ func partialDeadline(now, deadline time.Time, addrsRemaining int) (time.Time, er } func (tnet *Net) DialContext(ctx context.Context, network, address string) (net.Conn, error) { - fmt.Warningf("tun_net.DialContext: ", network, address) + fmt.Printf("tun_net.DialContext: ", network, address) if ctx == nil { panic("nil context") } @@ -734,28 +734,28 @@ func (tnet *Net) DialContext(ctx context.Context, network, address string) (net. acceptV6 = network[3] == '6' } if !acceptV4 && !acceptV6 { - fmt.Warningf("DialContext no v4 v6") + fmt.Printf("DialContext no v4 v6") return nil, &net.OpError{Op: "dial", Err: net.UnknownNetworkError(network)} } if network[:3] == "udp" { useUDP = true } else if network[:3] != "tcp" { - fmt.Warningf("DialContext no udp no tcp") + fmt.Printf("DialContext no udp no tcp") return nil, &net.OpError{Op: "dial", Err: net.UnknownNetworkError(network)} } host, sport, err := net.SplitHostPort(address) if err != nil { - fmt.Warningf("DialContext failed split", address, err) + fmt.Printf("DialContext failed split", address, err) return nil, &net.OpError{Op: "dial", Err: err} } port, err := strconv.Atoi(sport) if err != nil || port < 0 || port > 65535 { - fmt.Warningf("DialContext failed port", sport, err) + fmt.Printf("DialContext failed port", sport, err) return nil, &net.OpError{Op: "dial", Err: errNumericPort} } allAddr, err := tnet.LookupContextHost(ctx, host) if err != nil { - fmt.Warningf("LookupContextHost failed: ", host, err) + fmt.Printf("LookupContextHost failed: ", host, err) return nil, &net.OpError{Op: "dial", Err: err} } var addrs []net.IP @@ -767,7 +767,7 @@ func (tnet *Net) DialContext(ctx context.Context, network, address string) (net. } } if len(addrs) == 0 && len(allAddr) != 0 { - fmt.Warningf("DialContext failed no addr") + fmt.Printf("DialContext failed no addr") return nil, &net.OpError{Op: "dial", Err: errNoSuitableAddress} } @@ -781,7 +781,7 @@ func (tnet *Net) DialContext(ctx context.Context, network, address string) (net. } else if err == context.DeadlineExceeded { err = errTimeout } - fmt.Warningf("DialContext failed context done", err) + fmt.Printf("DialContext failed context done", err) return nil, &net.OpError{Op: "dial", Err: err} default: } @@ -809,7 +809,7 @@ func (tnet *Net) DialContext(ctx context.Context, network, address string) (net. c, err = tnet.DialContextTCP(dialCtx, &net.TCPAddr{IP: addr, Port: port}) } if err == nil { - fmt.Warningf("DialContext success") + fmt.Printf("DialContext success") return c, nil } if firstErr == nil { @@ -819,7 +819,7 @@ func (tnet *Net) DialContext(ctx context.Context, network, address string) (net. if firstErr == nil { firstErr = &net.OpError{Op: "dial", Err: errMissingAddress} } - fmt.Warningf("DialContext failed", firstErr) + fmt.Printf("DialContext failed", firstErr) return nil, firstErr } |