50 const char *gw =
"10.10.123.123";
51 const char *route =
"10.10.0.0";
52 int route_prefix = 16;
64 inet_pton(AF_INET,
"10.10.0.3", &addr);
65 GetBestRoute(addr, 0, &row);
66 char next_hop[INET_ADDRSTRLEN];
67 inet_ntop(AF_INET, &row.dwForwardNextHop, next_hop, INET_ADDRSTRLEN);
70 ASSERT_STREQ(gw, next_hop);