ofalk / libdnet

libdnet provides a simplified, portable interface to several low-level networking routines.
Other
153 stars 60 forks source link

route_get hangs on ipv6 / mac os x #19

Closed GoogleCodeExporter closed 2 years ago

GoogleCodeExporter commented 9 years ago
This is on Mac OS X 10.6

/*
 * function: find_default_route_entry input: none output: addr (libdnet)
 * structure with the default route address
 */
struct addr    *
find_default_route_entry()
{
        route_t        *r = NULL;
        struct route_entry *e = NULL;
        int             i = 0;

        if ((e = malloc(sizeof(struct route_entry))) == NULL)
                crapout("malloc: failed to allocate route_entry for find_default_route");

        memset((void *) e, 0, sizeof(struct route_entry));
        if ((i = addr_pton("::", &((*e).route_dst))) < 0)
                crapout("dnet: Failed to addr_pton");

        if ((r = route_open()) == NULL)
                crapout("dnet: Failed to route_open");

        if ((i = route_get(r, e)) < 0)
                crapout("dnet: Failed to route_get");

        route_close(r);

        dprintf("default gateway addr: %s\n", addr_ntoa(&((*e).route_gw)));

        return &((*e).route_gw);

}

Expected output: interface for default route on IPv6.
dnet 1.12
OS X 10.6.7

Original issue reported on code.google.com by jfesler on 23 Mar 2011 at 10:00

ReturnToTheYouth commented 6 years ago

hello ! I want to ask you that how to use lidnet?

ofalk commented 2 years ago

old report. if there is still an issue, please open a new one on a fresh system.