Searched refs:scope (Results 1 - 5 of 5) sorted by relevance

/lxc/src/python-lxc/lxc/
H A D__init__.py328 def get_ips(self, interface=None, family=None, scope=None, timeout=0):
338 if scope:
339 kwargs['scope'] = scope
/lxc/src/lua-lxc/
H A Dcore.c462 int i, scope = 0; local
469 scope = luaL_checkinteger(L, 4);
471 addresses = c->get_ips(c, iface, family, scope);
/lxc/src/lxc/
H A Dlxccontainer.h470 * \param scope IPv6 scope id (ignored if \p family is not "inet6").
478 char** (*get_ips)(struct lxc_container *c, const char* interface, const char* family, int scope);
H A Dlxccontainer.c1867 static char** do_lxcapi_get_ips(struct lxc_container *c, const char* interface, const char* family, int scope) argument
1922 if (((struct sockaddr_in6 *)tempIfAddr->ifa_addr)->sin6_scope_id != scope)
/lxc/src/python-lxc/
H A Dlxc.c1079 static char *kwlist[] = {"interface", "family", "scope", NULL};
1082 int scope = 0; local
1090 &interface, &family, &scope))
1094 ips = self->container->get_ips(self->container, interface, family, scope);
1699 "get_ips(interface, family, scope) -> tuple\n"

Completed in 76 milliseconds