Lines Matching defs:endpoint
3574 union gre_addr endpoint;
3592 memset(&endpoint, 0, sizeof(endpoint));
3603 endpoint.in4 = sin->sin_addr;
3618 error = in6_embedscope(&endpoint.in6, sin6, NULL, NULL);
3628 return (etherbridge_add_addr(&sc->sc_eb, &endpoint,
3667 const union gre_addr *endpoint;
3670 endpoint = etherbridge_resolve_ea(&sc->sc_eb,
3672 if (endpoint == NULL) {
3674 endpoint = &tunnel->t_dst;
3676 gateway = *endpoint;
4288 union gre_addr *endpoint;
4290 endpoint = pool_get(&nvgre_endpoint_pool, PR_NOWAIT);
4291 if (endpoint == NULL)
4294 *endpoint = *ea;
4296 return (endpoint);
4302 union gre_addr *endpoint = port;
4304 pool_put(&nvgre_endpoint_pool, endpoint);
4319 union gre_addr *endpoint = port;
4327 sin->sin_addr = endpoint->in4;
4336 in6_recoverscope(sin6, &endpoint->in6);