aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-07-04 15:44:22 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2018-07-04 15:44:22 +0200
commit6d26744a2c78d874e6e2c8f44cacb0c7c6c11eae (patch)
treee0e87613a2c2bda6545c31886eac964ff41d0123 /networking/udhcp
parentfc267214f0957bdc5794a71ae73e38edb00e5ba2 (diff)
downloadbusybox-w32-6d26744a2c78d874e6e2c8f44cacb0c7c6c11eae.tar.gz
busybox-w32-6d26744a2c78d874e6e2c8f44cacb0c7c6c11eae.tar.bz2
busybox-w32-6d26744a2c78d874e6e2c8f44cacb0c7c6c11eae.zip
udhcp: tweak comment indentation, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp')
-rw-r--r--networking/udhcp/common.c78
1 files changed, 39 insertions, 39 deletions
diff --git a/networking/udhcp/common.c b/networking/udhcp/common.c
index 77fb07cdc..e5fd74f91 100644
--- a/networking/udhcp/common.c
+++ b/networking/udhcp/common.c
@@ -93,51 +93,51 @@ const struct dhcp_optflag dhcp_optflags[] = {
93 */ 93 */
94/* Must match dhcp_optflags[] order */ 94/* Must match dhcp_optflags[] order */
95const char dhcp_option_strings[] ALIGN1 = 95const char dhcp_option_strings[] ALIGN1 =
96 "subnet" "\0" /* DHCP_SUBNET */ 96 "subnet" "\0" /* DHCP_SUBNET */
97 "timezone" "\0" /* DHCP_TIME_OFFSET */ 97 "timezone" "\0" /* DHCP_TIME_OFFSET */
98 "router" "\0" /* DHCP_ROUTER */ 98 "router" "\0" /* DHCP_ROUTER */
99// "timesrv" "\0" /* DHCP_TIME_SERVER */ 99// "timesrv" "\0" /* DHCP_TIME_SERVER */
100// "namesrv" "\0" /* DHCP_NAME_SERVER */ 100// "namesrv" "\0" /* DHCP_NAME_SERVER */
101 "dns" "\0" /* DHCP_DNS_SERVER */ 101 "dns" "\0" /* DHCP_DNS_SERVER */
102// "logsrv" "\0" /* DHCP_LOG_SERVER */ 102// "logsrv" "\0" /* DHCP_LOG_SERVER */
103// "cookiesrv" "\0" /* DHCP_COOKIE_SERVER */ 103// "cookiesrv" "\0" /* DHCP_COOKIE_SERVER */
104 "lprsrv" "\0" /* DHCP_LPR_SERVER */ 104 "lprsrv" "\0" /* DHCP_LPR_SERVER */
105 "hostname" "\0" /* DHCP_HOST_NAME */ 105 "hostname" "\0" /* DHCP_HOST_NAME */
106 "bootsize" "\0" /* DHCP_BOOT_SIZE */ 106 "bootsize" "\0" /* DHCP_BOOT_SIZE */
107 "domain" "\0" /* DHCP_DOMAIN_NAME */ 107 "domain" "\0" /* DHCP_DOMAIN_NAME */
108 "swapsrv" "\0" /* DHCP_SWAP_SERVER */ 108 "swapsrv" "\0" /* DHCP_SWAP_SERVER */
109 "rootpath" "\0" /* DHCP_ROOT_PATH */ 109 "rootpath" "\0" /* DHCP_ROOT_PATH */
110 "ipttl" "\0" /* DHCP_IP_TTL */ 110 "ipttl" "\0" /* DHCP_IP_TTL */
111 "mtu" "\0" /* DHCP_MTU */ 111 "mtu" "\0" /* DHCP_MTU */
112 "broadcast" "\0" /* DHCP_BROADCAST */ 112 "broadcast" "\0" /* DHCP_BROADCAST */
113 "routes" "\0" /* DHCP_ROUTES */ 113 "routes" "\0" /* DHCP_ROUTES */
114 "nisdomain" "\0" /* DHCP_NIS_DOMAIN */ 114 "nisdomain" "\0" /* DHCP_NIS_DOMAIN */
115 "nissrv" "\0" /* DHCP_NIS_SERVER */ 115 "nissrv" "\0" /* DHCP_NIS_SERVER */
116 "ntpsrv" "\0" /* DHCP_NTP_SERVER */ 116 "ntpsrv" "\0" /* DHCP_NTP_SERVER */
117 "wins" "\0" /* DHCP_WINS_SERVER */ 117 "wins" "\0" /* DHCP_WINS_SERVER */
118 "lease" "\0" /* DHCP_LEASE_TIME */ 118 "lease" "\0" /* DHCP_LEASE_TIME */
119 "serverid" "\0" /* DHCP_SERVER_ID */ 119 "serverid" "\0" /* DHCP_SERVER_ID */
120 "message" "\0" /* DHCP_ERR_MESSAGE */ 120 "message" "\0" /* DHCP_ERR_MESSAGE */
121 "tftp" "\0" /* DHCP_TFTP_SERVER_NAME */ 121 "tftp" "\0" /* DHCP_TFTP_SERVER_NAME*/
122 "bootfile" "\0" /* DHCP_BOOT_FILE */ 122 "bootfile" "\0" /* DHCP_BOOT_FILE */
123// "userclass" "\0" /* DHCP_USER_CLASS */ 123// "userclass" "\0" /* DHCP_USER_CLASS */
124#if ENABLE_FEATURE_UDHCP_RFC3397 124#if ENABLE_FEATURE_UDHCP_RFC3397
125 "search" "\0" /* DHCP_DOMAIN_SEARCH */ 125 "search" "\0" /* DHCP_DOMAIN_SEARCH */
126// doesn't work in udhcpd.conf since OPTION_SIP_SERVERS 126// doesn't work in udhcpd.conf since OPTION_SIP_SERVERS
127// is not handled yet by "string->option" conversion code: 127// is not handled yet by "string->option" conversion code:
128 "sipsrv" "\0" /* DHCP_SIP_SERVERS */ 128 "sipsrv" "\0" /* DHCP_SIP_SERVERS */
129#endif 129#endif
130 "staticroutes" "\0"/* DHCP_STATIC_ROUTES */ 130 "staticroutes" "\0" /* DHCP_STATIC_ROUTES */
131#if ENABLE_FEATURE_UDHCP_8021Q 131#if ENABLE_FEATURE_UDHCP_8021Q
132 "vlanid" "\0" /* DHCP_VLAN_ID */ 132 "vlanid" "\0" /* DHCP_VLAN_ID */
133 "vlanpriority" "\0"/* DHCP_VLAN_PRIORITY */ 133 "vlanpriority" "\0" /* DHCP_VLAN_PRIORITY */
134#endif 134#endif
135 "pxeconffile" "\0" /* DHCP_PXE_CONF_FILE */ 135 "pxeconffile" "\0" /* DHCP_PXE_CONF_FILE */
136 "pxepathprefix" "\0" /* DHCP_PXE_PATH_PREFIX */ 136 "pxepathprefix" "\0" /* DHCP_PXE_PATH_PREFIX */
137 "reboottime" "\0" /* DHCP_REBOOT_TIME */ 137 "reboottime" "\0" /* DHCP_REBOOT_TIME */
138 "ip6rd" "\0" /* DHCP_6RD */ 138 "ip6rd" "\0" /* DHCP_6RD */
139 "msstaticroutes""\0"/* DHCP_MS_STATIC_ROUTES */ 139 "msstaticroutes" "\0" /* DHCP_MS_STATIC_ROUTES*/
140 "wpad" "\0" /* DHCP_WPAD */ 140 "wpad" "\0" /* DHCP_WPAD */
141 ; 141 ;
142#endif 142#endif
143 143