HomeSort by relevance Sort by last modified time
    Searched refs:nd_fd (Results 1 - 3 of 3) sorted by null

  /external/dhcpcd-6.8.2/
ipv6nd.c 165 if (ctx->nd_fd != -1)
166 return ctx->nd_fd;
168 ctx->nd_fd = socket(PF_INET6, SOCK_RAW | SOCK_CLOEXEC | SOCK_NONBLOCK,
170 if (ctx->nd_fd == -1)
173 if ((ctx->nd_fd = socket(PF_INET6, SOCK_RAW, IPPROTO_ICMPV6)) == -1)
175 if ((on = fcntl(ctx->nd_fd, F_GETFD, 0)) == -1 ||
176 fcntl(ctx->nd_fd, F_SETFD, on | FD_CLOEXEC) == -1)
178 close(ctx->nd_fd);
179 ctx->nd_fd = -1;
182 if ((on = fcntl(ctx->nd_fd, F_GETFL, 0)) == -1 |
    [all...]
ipv6.h 206 int nd_fd; member in struct:ipv6_ctx
ipv6.c 170 ctx->nd_fd = -1;
    [all...]

Completed in 727 milliseconds