Searched defs:interface (Results 1 - 3 of 3) sorted by relevance

/lxc/src/lxc/tools/
H A Dlxc_ls.c66 char *interface; member in struct:ls
286 free(m->interface);
474 l->interface = ls_get_interface(c);
648 char *interface = lxc_string_join(", ", (const char **)interfaces, false); local
652 return interface;
862 printf("%-*s ", lht->interface_length, m->interface ? m->interface : "-");
1089 if (ls_send_str(wpipefd, n->interface) < 0)
1172 if (ls_recv_str(rpipefd, &n->interface) < 0)
1205 if (m->interface) {
[all...]
/lxc/src/python-lxc/
H A Dlxc.c1079 static char *kwlist[] = {"interface", "family", "scope", NULL};
1080 char* interface = NULL; local
1090 &interface, &family, &scope))
1094 ips = self->container->get_ips(self->container, interface, family, scope);
1699 "get_ips(interface, family, scope) -> tuple\n"
/lxc/src/lxc/
H A Dlxccontainer.c1783 char interface[IFNAMSIZ]; local
1839 while (read(pipefd[0], &interface, IFNAMSIZ) == IFNAMSIZ) {
1840 if (array_contains(&interfaces, interface, count))
1843 if(!add_to_array(&interfaces, interface, count))
1867 static char** do_lxcapi_get_ips(struct lxc_container *c, const char* interface, const char* family, int scope) argument
1928 if (interface && strcmp(interface, tempIfAddr->ifa_name))
1930 else if (!interface && strcmp("lo", tempIfAddr->ifa_name) == 0)
3886 ERROR("No source interface name given");
3922 ERROR("No source interface nam
[all...]

Completed in 586 milliseconds