Home
last modified time | relevance | path

Searched refs:iptype (Results 1 - 25 of 25) sorted by relevance

/foundation/communication/dhcp/services/dhcp_server/src/
H A Ddhcp_server_service_impl.cpp398 if ((tagRange.iptype != range.iptype) || in PutDhcpRange()
438 if ((iterRange->iptype == range.iptype) && (iterRange->strStartip == range.strStartip) && in RemoveDhcpRange()
442 "range.iptype:%{public}d,strStartip:%{private}s,strEndip:%{private}s, erase.", in RemoveDhcpRange()
444 range.iptype, in RemoveDhcpRange()
692 if (((iterRange.iptype != 0) && (iterRange.iptype != 1)) || (iterRange.leaseHours <= 0) || in CheckAndUpdateConf()
695 "iptype:%{public}d,leaseHours:%{public}d,strStartip:%{private}s,strEndip:%{private}s error!", in CheckAndUpdateConf()
696 iterRange.iptype, iterRang in CheckAndUpdateConf()
[all...]
H A Ddhcp_server_stub.cpp174 range.iptype = data.ReadInt32(); in OnSetDhcpRange()
201 range.iptype = data.ReadInt32(); in OnRemoveDhcpRange()
251 range.iptype = data.ReadInt32(); in OnPutDhcpRange()
H A Ddhcp_server_stub_lite.cpp156 (void)ReadInt32(req, &range.iptype); in OnSetDhcpRange()
186 (void)ReadInt32(req, &range.iptype); in OnRemoveDhcpRange()
239 (void)ReadInt32(req, &range.iptype); in OnPutDhcpRange()
/foundation/communication/dhcp/interfaces/inner_api/include/
H A Ddhcp_define.h133 int iptype; /* 0-ipv4,1-ipv6 */ member
153 iptype = -1; in DhcpResult()
216 int iptype; /* 0-ipv4,1-ipv6 */ member
225 iptype = -1; in DhcpRange()
/foundation/communication/dhcp/interfaces/kits/c/
H A Ddhcp_result_event.h42 int iptype; /* 0-ipv4,1-ipv6 */ member
63 int iptype; /* 0-ipv4,1-ipv6 */ member
/foundation/communication/dhcp/services/dhcp_client/src/
H A Ddhcp_client_service_impl.cpp401 result.iptype = 0; in DhcpIpv4ResultSuccess()
420 ifname.c_str(), result.iptype, result.isOptSuc, result.strYourCli.c_str(), result.strServer.c_str(), in DhcpIpv4ResultSuccess()
448 result.iptype = 0; in DhcpOfferResultSuccess()
483 result.iptype = 0; in DhcpIpv4ResultFail()
575 result.iptype = 1; in DhcpIpv6ResulCallback()
597 ifname.c_str(), result.iptype, result.isOptSuc, result.strYourCli.c_str(), result.strServer.c_str(), in DhcpIpv6ResulCallback()
644 if (iterResult->second[i].iptype != result.iptype) { in PushDhcpResult()
647 if (iterResult->second[i].iptype == 0) { // 0-ipv4 in PushDhcpResult()
675 if (iterResult->second[i].iptype ! in CheckDhcpResultExist()
[all...]
H A Ddhcp_client_callback_proxy.cpp42 data.WriteInt32(result.iptype); in OnIpSuccessChanged()
122 data.WriteInt32(result.iptype); in OnDhcpOfferReport()
H A Ddhcp_client_callback_proxy_lite.cpp50 (void)WriteInt32(&data, result.iptype); in OnIpSuccessChanged()
/foundation/communication/dhcp/frameworks/native/src/
H A Ddhcp_server_proxy.cpp199 data.WriteInt32(range.iptype); in SetDhcpRange()
206 DHCP_LOGI("%{public}s, LINE :%{public}d ifname:%{public}s iptype %{public}d leaseHours %{public}d" in SetDhcpRange()
208 __func__, __LINE__, ifname.c_str(), range.iptype, range.leaseHours, range.strTagName.c_str(), in SetDhcpRange()
275 data.WriteInt32(range.iptype); in PutDhcpRange()
282 DHCP_LOGI("%{public}s, LINE :%{public}d tagName:%{public}s iptype %{public}d leaseHours %{public}d" in PutDhcpRange()
284 __func__, __LINE__, tagName.c_str(), range.iptype, range.leaseHours, range.strTagName.c_str(), in PutDhcpRange()
413 data.WriteInt32(range.iptype); in RemoveDhcpRange()
420 DHCP_LOGI("%{public}s, LINE :%{public}d ifname:%{public}s iptype %{public}d leaseHours %{public}d" in RemoveDhcpRange()
422 __func__, __LINE__, tagName.c_str(), range.iptype, range.leaseHours, range.strTagName.c_str(), in RemoveDhcpRange()
H A Ddhcp_event.cpp87 dhcpResult.iptype = result.iptype; in OnIpSuccessChanged()
126 dhcpResult.iptype = result.iptype; in OnDhcpOfferReport()
H A Ddhcp_client_callback_stub.cpp118 result.iptype = data.ReadInt32(); in RemoteOnIpSuccessChanged()
164 result.iptype = data.ReadInt32(); in RemoteOnDhcpOfferReport()
H A Ddhcp_client_callback_stub_lite.cpp132 (void)ReadInt32(data, &result.iptype); in RemoteOnIpSuccessChanged()
H A Ddhcp_server_proxy_lite.cpp301 (void)WriteInt32(&request, range.iptype); in SetDhcpRange()
385 (void)WriteInt32(&request, range.iptype); in PutDhcpRange()
505 (void)WriteInt32(&request, range.iptype); in RemoveDhcpRange()
/foundation/communication/dhcp/test/fuzztest/dhcpserverimpl_fuzzer/
H A Ddhcpserverimpl_fuzzer.cpp59 range.iptype = 0; in PutDhcpRangeTest()
68 range.iptype = 0; in RemoveDhcpRangeTest()
85 range.iptype = 0; in SetDhcpRangeTest()
142 range.iptype = static_cast<int>(data[0]) % call; in CheckIpAddrRangeTest()
/foundation/communication/dhcp/test/unittest/services/dhcp_server/unittest/
H A Ddhcp_server_service_impl_test.cpp59 putRange.iptype = 0; in HWTEST_F()
61 setRange.iptype = 0; in HWTEST_F()
108 checkRange.iptype = 0; in HWTEST_F()
118 checkRange.iptype = 1; in HWTEST_F()
/foundation/communication/dhcp/frameworks/native/c_adapter/src/
H A Ddhcp_c_service.cpp165 rangeNew.iptype = range->iptype; in SetDhcpRange()
193 rangeNew.iptype = range->iptype; in PutDhcpRange()
/foundation/communication/netmanager_base/services/netmanagernative/src/
H A Ddhcp_controller.cpp48 "ifname=[%{public}s], iptype=[%{public}d], strYourCli=[%{public}s], " in OnSuccess()
51 ifname, result->iptype, result->strOptClientId, in OnSuccess()
139 range.iptype = IP_V4; in StartDhcpService()
/foundation/communication/dhcp/test/fuzztest/dhcpserver_fuzzer/
H A Ddhcpserver_fuzzer.cpp38 range.iptype = static_cast<int>(data[0]) % call; in DhcpServerFuzzerTest()
/foundation/communication/dhcp/test/unittest/services/dhcp_client/
H A Ddhcp_client_service_impl_test.cpp249 result.iptype = 1; in HWTEST_F()
263 result.iptype = 1; in HWTEST_F()
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_sta/
H A Dsta_state_machine.cpp3268 result.iptype = IPTYPE_IPV4; in ConfigStaticIpAddress()
3293 result.iptype = IPTYPE_IPV6; in ConfigStaticIpAddress()
3317 result.iptype = IPTYPE_IPV4; in ConfigStaticIpAddress()
4220 dest->iptype = source->iptype; in SaveDhcpResult()
4257 LOGI("SaveDhcpResult ok, ipType:%{public}d", dest->iptype); in SaveDhcpResult()
4296 LOGI("SaveDhcpResultExt ok, ipType:%{public}d", dest->iptype); in SaveDhcpResultExt()
4325 LOGI("iptype=%{public}d, isOptSuc=%{public}d, clientip =%{private}s, serverip=%{private}s, subnet=%{private}s", in OnSuccess()
4326 result->iptype, result->isOptSuc, result->strOptClientId, result->strOptServerId, result->strOptSubnet); in OnSuccess()
4335 if (result->iptype in OnSuccess()
4497 TryToCloseDhcpClient(int iptype) TryToCloseDhcpClient() argument
[all...]
H A Dsta_state_machine.h413 static void TryToCloseDhcpClient(int iptype);
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/net_helper/
H A Ddhcpd_interface.cpp310 range.iptype = 0; in CallAdapterSetRange()
H A Dif_config.cpp308 dhcpResult->iptype, in SetIfDnsAndRoute()
/foundation/communication/netmanager_ext/services/networksharemanager/src/
H A Dnetworkshare_sub_statemachine.cpp780 range.iptype = IP_V4; in StartDhcp()
/foundation/communication/wifi/wifi/test/wifi_standard/precompiled_macro/
H A Dsta_state_machine_test.cpp282 result1.iptype = 0; in TryToSaveIpV6ResultTest()

Completed in 23 milliseconds