net/lwip: add comments on DHCP/DHCPS
authorJin-Seong Kim <jseong82.kim@samsung.com>
Mon, 27 Mar 2017 07:18:59 +0000 (16:18 +0900)
committerHeesub Shin <heesub.shin@samsung.com>
Tue, 18 Apr 2017 03:02:02 +0000 (12:02 +0900)
This commit is including added comments about DHCP client and server and
disabled LWIP_DHCP definition for explicit directions on lwIP
 - user can configure lwIP feature set via lwipopts.h
 - DHCP client and server are supported by netutils in this platform

Change-Id: I9051246f38a70a741236969454adb315d8aed77a
Signed-off-by: Jin-Seong Kim <jseong82.kim@samsung.com>
os/include/net/lwip/lwipopts.h [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index f7ff27e..9692493
 
 #define UDP_TTL                         255
 #define LWIP_UDP_TODO                   1
-#define LWIP_DHCPS                      0
 /* ---------- UDP options ---------- */
 
+/* ---------- DHCP options ---------- */
+
+/*
+ * Note
+ * In this platform, DHCP client and server are supported through netutils
+ * Instead of using lwIP DHCP, please use netutils dhcpc and dhcpd
+ */
+#define LWIP_DHCPS                      0
+#define LWIP_DHCP                       0
+/* ---------- DHCP options ---------- */
 
 /* ---------- SNMP options ---------- */
 #ifdef CONFIG_NET_LWIP_SNMP