Commit 81e84f8d authored by Simon Kelley's avatar Simon Kelley

preferred and valid times in bpf.c

parent 55b42f6d
...@@ -147,7 +147,8 @@ int iface_enumerate(int family, void *parm, int (*callback)()) ...@@ -147,7 +147,8 @@ int iface_enumerate(int family, void *parm, int (*callback)())
addr->s6_addr[3] = 0; addr->s6_addr[3] = 0;
} }
if (!((*callback)(addr, prefix, scope_id, iface_index, 0, 0, 0, parm))) /* preferred and valid times == forever until we known how to dtermine them. */
if (!((*callback)(addr, prefix, scope_id, iface_index, 0, -1, -1, parm)))
goto err; goto err;
} }
#endif #endif
......
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