Home | History | Annotate | Download | only in qemu

Lines Matching defs:ip

85 #include <netinet/ip.h>
86 #include <netinet/ip_icmp.h> // must come after ip.h
712 int restricted, const char *ip)
720 slirp_init(restricted, ip);
1188 /* Check if IP device was opened */
1194 syslog(LOG_ERR, "Can't open /dev/ip (actually /dev/udp)");
1217 if(ioctl(if_fd, I_PUSH, "ip") < 0){
1218 syslog(LOG_ERR, "Can't push IP module");
1259 syslog(LOG_ERR, "Can't link TAP device to IP");
2162 "vlan", "name", "hostname", "restrict", "ip", NULL
2165 char *ip = NULL;
2178 if (get_param_value(buf, sizeof(buf), "ip", p)) {
2179 ip = qemu_strdup(buf);
2182 ret = net_slirp_init(vlan, device, name, restricted, ip);
2183 qemu_free(ip);