Commit a782cf5c authored by ginuerzh's avatar ginuerzh

fix parseIPRoutes

parent e16427c6
......@@ -301,7 +301,12 @@ func parseIPRoutes(s string) (routes []gost.IPRoute) {
}
var route gost.IPRoute
ss := strings.Split(line, " ")
var ss []string
for _, s := range strings.Split(line, " ") {
if s = strings.TrimSpace(s); s != "" {
ss = append(ss, s)
}
}
if len(ss) > 0 && ss[0] != "" {
_, route.Dest, _ = net.ParseCIDR(strings.TrimSpace(ss[0]))
if route.Dest == nil {
......
......@@ -20,7 +20,7 @@ import (
)
// Version is the gost version.
const Version = "2.9.1"
const Version = "2.9.2-dev"
// Debug is a flag that enables the debug log.
var Debug bool
......
......@@ -230,6 +230,9 @@ func (h *tunHandler) initTunnelConn(pc net.PacketConn) (net.PacketConn, error) {
}
func (h *tunHandler) findRouteFor(dst net.IP) net.Addr {
if v, ok := h.routes.Load(ipToTunRouteKey(dst)); ok {
return v.(net.Addr)
}
for _, route := range h.options.IPRoutes {
if route.Dest.Contains(dst) && route.Gateway != nil {
if v, ok := h.routes.Load(ipToTunRouteKey(route.Gateway)); ok {
......@@ -237,9 +240,6 @@ func (h *tunHandler) findRouteFor(dst net.IP) net.Addr {
}
}
}
if v, ok := h.routes.Load(ipToTunRouteKey(dst)); ok {
return v.(net.Addr)
}
return nil
}
......@@ -304,6 +304,9 @@ func (h *tunHandler) transportTun(tun net.Conn, conn net.PacketConn, raddr net.A
return nil
}
if Debug {
log.Logf("[tun] find route: %s -> %s", dst, addr)
}
if _, err := conn.WriteTo(b[:n], addr); err != nil {
return err
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment