/vbox/src/VBox/Main/webservice/jaxlibs/ |
H A D | http.jar | ... -INF/MANIFEST.MF com/ com/sun/ com/sun/net/ com/sun/net/httpserver/ com/sun/net/httpserver/spi/ com |
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/ |
H A D | ns_ntoa.c | 50 union { union ns_net net_e; u_long long_e; } net; local 57 net.net_e = addr.x_net; 58 sprintf(obuf, "%lx", (u_long)ntohl(net.long_e));
|
H A D | getnetbyht.c | 63 static struct netent net; variable in typeref:struct:netent 107 net.n_name = p; 117 net.n_net = inet_network(cp); 118 net.n_addrtype = AF_INET; 119 q = net.n_aliases = net_aliases; 134 return (&net); 158 _getnetbyhtaddr(register unsigned long net, register int type) argument 164 if (p->n_addrtype == type && p->n_net == net)
|
H A D | res_init.c | 163 char *net; local 343 net = cp; 349 if (inet_aton(net, &a)) { 353 net = cp; 359 if (inet_aton(net, &a)) {
|
H A D | getnetbydns.c | 231 _getnetbydnsaddr(register unsigned long net, register int net_type) argument 243 for (nn = 4, net2 = net; net2; net2 >>= 8) 271 unsigned u_net = net; /* maybe net should be unsigned ? */ 283 _getnetbydnsname(register const char *net) argument 293 strncpy(qbuf, net, sizeof(qbuf) - 1);
|
/vbox/src/VBox/NetworkServices/NAT/ |
H A D | pxremap.c | 173 ip_addr_t net; local 175 ip_addr_get_network(&net, &netif->ip_addr, &netif->netmask); 177 htonl(ntohl(ip4_addr_get_u32(&net))
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/ |
H A D | ip4.c | 182 u32_t net = addr & IP_CLASSA_NET; local 183 if ((net == 0) || (net == ((u32_t)IP_LOOPBACKNET << IP_CLASSA_NSHIFT))) {
|
/vbox/src/VBox/Frontends/VBoxManage/ |
H A D | VBoxManageNATNetwork.cpp | 45 #include <iprt/net.h> 305 ComPtr<INATNetwork> net; local 306 rc = a->virtualBox->FindNATNetworkByName(NetName.mutableRaw(), net.asOutParam()); 312 CHECK_ERROR(a->virtualBox, CreateNATNetwork(NetName.raw(), net.asOutParam())); 326 CHECK_ERROR(net, COMSETTER(Network)(Bstr(pNetworkCidr).raw())); 332 CHECK_ERROR(net, COMSETTER(NeedDhcpServer) ((BOOL)dhcp)); 339 CHECK_ERROR(net, COMSETTER(IPv6Enabled) ((BOOL)ipv6)); 349 CHECK_ERROR(net, RemovePortForwardRule((BOOL)(*it).fIPv6, 369 CHECK_ERROR(net, AddPortForwardRule((BOOL)(*it).fPfrIPv6, 386 CHECK_ERROR_RET(net, COMSETTE [all...] |
H A D | VBoxManageList.cpp | 1138 ComPtr<INATNetwork> net = nets[i]; local 1140 net->COMGETTER(NetworkName)(netName.asOutParam()); 1143 net->COMGETTER(Gateway)(gateway.asOutParam()); 1146 net->COMGETTER(Network)(network.asOutParam()); 1149 net->COMGETTER(IPv6Enabled)(&fEnabled); 1152 net->COMGETTER(Network)(network.asOutParam()); 1154 net->COMGETTER(NeedDhcpServer)(&fEnabled); 1156 net->COMGETTER(Enabled)(&fEnabled);
|
/vbox/src/VBox/Main/src-server/ |
H A D | NATNetworkImpl.cpp | 28 #include <iprt/net.h> 497 RTNETADDRIPV4 addr, net, mask; local 508 rc = RTCidrStrToIPv4(Utf8Str(m->IPv4NetworkCidr).c_str(), &net, &mask); 512 if (((net.u + aOffset) & mask.u) != net.u)
|
H A D | VirtualBoxImpl.cpp | 484 /* net services - dhcp services */ 500 /* net services - nat networks */ 505 const settings::NATNetwork &net = *it; local 510 rc = pNATNetwork->init(this, net);
|
/vbox/src/VBox/Main/xml/ |
H A D | Settings.cpp | 1469 NATNetwork net; local 1470 if ( pelmNet->getAttributeValue("networkName", net.strNetworkName) 1471 && pelmNet->getAttributeValue("enabled", net.fEnabled) 1472 && pelmNet->getAttributeValue("network", net.strNetwork) 1473 && pelmNet->getAttributeValue("ipv6", net.fIPv6) 1474 && pelmNet->getAttributeValue("ipv6prefix", net.strIPv6Prefix) 1475 && pelmNet->getAttributeValue("advertiseDefaultIPv6Route", net.fAdvertiseDefaultIPv6Route) 1476 && pelmNet->getAttributeValue("needDhcp", net.fNeedDhcpServer) ) 1478 pelmNet->getAttributeValue("loopback6", net.u32HostLoopback6Offset); 1481 readNATLoopbacks(*pelmMappings, net [all...] |