47ddb515b7
- Provide a function to add and delete IPv4/IPv6 addresses using netlink. - Provide a function that clears all IP addresses on an interface that can be used by netd. Also, a couple of cleanups: - Update the header file to match reality, and include the header file in the implementation. Also fix a caller that has an incorrect method signature. - Fix whitespace in Android.mk. Change-Id: Ifba9d60cdfffb0b7e5c3b9c6ab328f5f77d259c4
16 lines
284 B
Makefile
16 lines
284 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
dhcpclient.c \
|
|
dhcpmsg.c \
|
|
dhcp_utils.c \
|
|
ifc_utils.c \
|
|
packet.c
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils
|
|
|
|
LOCAL_MODULE:= libnetutils
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|