Searched refs:ifaIndex (Results 1 - 3 of 3) sorted by relevance
/foundation/communication/dhcp/services/dhcp_client/include/ |
H A D | dhcp_ipv6_client.h | 73 void onIpv6DnsAddEvent(void* data, int len, int ifaIndex); 74 void onIpv6RouteAddEvent(char* gateway, char* dst, int ifaIndex); 75 void onIpv6AddressAddEvent(void* data, int prefixLen, int ifaIndex);
|
/foundation/communication/dhcp/services/dhcp_client/src/ |
H A D | dhcp_ipv6_client.cpp | 272 void DhcpIpv6Client::onIpv6AddressAddEvent(void* data, int prefixLen, int ifaIndex) in onIpv6AddressAddEvent() argument 275 if (currIndex != ifaIndex) { in onIpv6AddressAddEvent() 276 DHCP_LOGE("address ifaindex invalid, %{public}d != %{public}d", currIndex, ifaIndex); in onIpv6AddressAddEvent() 394 void DhcpIpv6Client::onIpv6DnsAddEvent(void* data, int len, int ifaIndex) in onIpv6DnsAddEvent() argument 397 if (currIndex != ifaIndex) { in onIpv6DnsAddEvent() 398 DHCP_LOGE("dnsevent ifaindex invalid, %{public}d != %{public}d", currIndex, ifaIndex); in onIpv6DnsAddEvent() 444 void DhcpIpv6Client::onIpv6RouteAddEvent(char* gateway, char* dst, int ifaIndex) in onIpv6RouteAddEvent() argument 447 if (currIndex != ifaIndex) { in onIpv6RouteAddEvent() 448 DHCP_LOGE("route ifaindex invalid, %{public}d != %{public}d", currIndex, ifaIndex); in onIpv6RouteAddEvent() 452 gateway, dst, ifaIndex); in onIpv6RouteAddEvent() [all...] |
/foundation/communication/dhcp/test/fuzztest/dhcpclientfun_fuzzer/ |
H A D | dhcpclientfun_fuzzer.cpp | 154 int ifaIndex = static_cast<int>(data[0]); in OnIpv6AddressAddEventFuzzerTest() local 155 ipv6Client->onIpv6AddressAddEvent(nullptr, prefixLen, ifaIndex); in OnIpv6AddressAddEventFuzzerTest() 158 ipv6Client->onIpv6AddressAddEvent(&data1, prefixLen, ifaIndex); in OnIpv6AddressAddEventFuzzerTest() 170 int ifaIndex = static_cast<int>(data[0]); in OnIpv6DnsAddEventFuzzerTest() local 171 ipv6Client->onIpv6DnsAddEvent(nullptr, len, ifaIndex); in OnIpv6DnsAddEventFuzzerTest() 174 ipv6Client->onIpv6DnsAddEvent(&data1, len, ifaIndex); in OnIpv6DnsAddEventFuzzerTest() 181 int ifaIndex = static_cast<int>(data[0]); in OnIpv6RouteAddEventFuzzerTest() local 182 ipv6Client->onIpv6RouteAddEvent(gateway, dst, ifaIndex); in OnIpv6RouteAddEventFuzzerTest()
|
Completed in 4 milliseconds