Home
last modified time | relevance | path

Searched refs:ip (Results 1 – 9 of 9) sorted by relevance

/drivers/hdf_core/framework/model/network/ethernet/src/
Dhdf_eth_core.c55 IpV4Addr ip; in SetEthNetworkAddr() local
59 ip.addr = 0x0A01a8c0UL; /* 192, 168, 1. 10 */ in SetEthNetworkAddr()
63 if (NetIfSetAddr(netDev, &ip, &netmask, &gw) != HDF_SUCCESS) { in SetEthNetworkAddr()
/drivers/hdf_core/framework/test/unittest/model/network/wifi/unittest/netdevice/
Dnet_device_test.c112 IpV4Addr ip = { 0x010ca8c0UL }; // 192, 168, 12, 1 in WiFiNetDviceTestSetAddr() local
115 return NetIfSetAddr(g_netDevice, &ip, &netmask, &gw); in WiFiNetDviceTestSetAddr()
/drivers/hdf_core/framework/model/network/common/netdevice/
Dnet_device_impl.h41 int32_t (*dhcpsStart)(struct NetDeviceImpl *netDevice, char *ip, uint16_t ipNum);
Dnet_device.c533 int32_t NetIfDhcpsStart(const struct NetDevice *netDevice, char *ip, uint16_t ipNum) in NetIfDhcpsStart() argument
537 return ndImpl->interFace->dhcpsStart(ndImpl, ip, ipNum); in NetIfDhcpsStart()
/drivers/hdf_core/framework/model/network/wifi/platform/src/qos/
Dflow_control.c69 uint8_t *ip = NULL; in IsTcpKeyFrame() local
84 ip = (uint8_t *)(ipHeader); in IsTcpKeyFrame()
86 ipHdrLen = ((*ip) & 0x0F) << PROTOCOL_STANDARD_SHIFT_COUNT; in IsTcpKeyFrame()
/drivers/hdf_core/adapter/khdf/liteos_m/network/src/
Dnet_device_adapter.c460 static int32_t LiteNetDhcpsStart(struct NetDeviceImpl *netDeviceImpl, char *ip, uint16_t ipNum) in LiteNetDhcpsStart() argument
468 if ((ret = netifapi_dhcps_start(lwipNf, ip, ipNum)) == ERR_OK) { in LiteNetDhcpsStart()
/drivers/hdf_core/framework/include/net/
Dnet_device.h760 int32_t NetIfDhcpsStart(const struct NetDevice *netDevice, char *ip, uint16_t ipNum);
/drivers/hdf_core/adapter/khdf/liteos/network/src/
Dnet_device_adapter.c499 static int32_t LiteNetDhcpsStart(struct NetDeviceImpl *netDeviceImpl, char *ip, uint16_t ipNum) in LiteNetDhcpsStart() argument
507 if ((ret = netifapi_dhcps_start(lwipNf, ip, ipNum)) == ERR_OK) { in LiteNetDhcpsStart()
/drivers/hdf_core/framework/model/network/wifi/core/module/
Dwifi_base.c698 IpV4Addr ip; in SetNetworkAddr() local
702 ip.addr = 0x00000000UL; in SetNetworkAddr()
706 ip.addr = 0x010ca8c0UL; in SetNetworkAddr()
712 NetIfSetAddr(netdev, &ip, &netmask, &gw); in SetNetworkAddr()
719 IpV4Addr ip = {0x00000000UL}; in UnsetNetworkAddr() local
723 NetIfSetAddr(netdev, &ip, &netmask, &gw); in UnsetNetworkAddr()