Home | History | Annotate | Download | only in libaltq

Lines Matching defs:iface

200 	struct blue_interface iface;
212 memset(&iface, 0, sizeof(iface));
213 strncpy(iface.blue_ifname, ifinfo->ifname, IFNAMSIZ);
215 if (ioctl(blue_fd, BLUE_IF_ATTACH, &iface) < 0)
221 strncpy(conf.iface.blue_ifname, ifinfo->ifname, IFNAMSIZ);
231 LOG(LOG_INFO, 0, "blue attached to %s", iface.blue_ifname);
239 struct blue_interface iface;
241 memset(&iface, 0, sizeof(iface));
242 strncpy(iface.blue_ifname, ifinfo->ifname, IFNAMSIZ);
244 if (ioctl(blue_fd, BLUE_IF_DETACH, &iface) < 0)
257 struct blue_interface iface;
259 memset(&iface, 0, sizeof(iface));
260 strncpy(iface.blue_ifname, ifinfo->ifname, IFNAMSIZ);
262 if (ioctl(blue_fd, BLUE_ENABLE, &iface) < 0)
270 struct blue_interface iface;
272 memset(&iface, 0, sizeof(iface));
273 strncpy(iface.blue_ifname, ifinfo->ifname, IFNAMSIZ);
275 if (ioctl(blue_fd, BLUE_DISABLE, &iface) < 0)