mirror of
https://github.com/espressif/openthread.git
synced 2026-09-02 23:30:07 +00:00
DHCP: implement simple Server/Client (solicit/reply) (#884)
* DHCP implementation - implementation Dhcp client/server (solicit/reply) - two build options --enable-dhcp6-server --enable-dhcp6-client (default disable) - add Cert_5_3_09_AddressQuery for Dhcp Client/Server test in travis
This commit is contained in:
@@ -65,6 +65,14 @@ ifeq ($(JOINER),1)
|
||||
configure_OPTIONS += --enable-joiner
|
||||
endif
|
||||
|
||||
ifeq ($(DHCP6_SERVER),1)
|
||||
configure_OPTIONS += --enable-dhcp6-server
|
||||
endif
|
||||
|
||||
ifeq ($(DHCP6_CLIENT),1)
|
||||
configure_OPTIONS += --enable-dhcp6-client
|
||||
endif
|
||||
|
||||
COMMONCFLAGS := \
|
||||
-fdata-sections \
|
||||
-ffunction-sections \
|
||||
|
||||
@@ -92,7 +92,7 @@ configure_OPTIONS = \
|
||||
$(NULL)
|
||||
|
||||
ifeq ($(COVERAGE),1)
|
||||
configure_OPTIONS += --enable-coverage --enable-commissioner --enable-joiner
|
||||
configure_OPTIONS += --enable-coverage --enable-commissioner --enable-joiner --enable-dhcp6-client --enable-dhcp6-server
|
||||
else
|
||||
configure_OPTIONS +=
|
||||
endif
|
||||
|
||||
Reference in New Issue
Block a user