aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/common.h
diff options
context:
space:
mode:
authorLeonid Lisovskiy <lly.dev@gmail.com>2011-10-18 00:35:47 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2011-10-18 00:35:47 +0200
commit6c9c0a1dc9de48b59c103600a1f574a4a234b3d6 (patch)
treebc758b649ccccc95e4020431457362991155b1bd /networking/udhcp/common.h
parentcd06e06eee3ef89e45b60d7122e5518995c7f65e (diff)
downloadbusybox-w32-6c9c0a1dc9de48b59c103600a1f574a4a234b3d6.tar.gz
busybox-w32-6c9c0a1dc9de48b59c103600a1f574a4a234b3d6.tar.bz2
busybox-w32-6c9c0a1dc9de48b59c103600a1f574a4a234b3d6.zip
udhcp: IF_UDHCP_VERBOSE() macro - improve code readability
Signed-off-by: Leonid Lisovskiy <lly.dev@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/common.h')
-rw-r--r--networking/udhcp/common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h
index 80d97e857..786266810 100644
--- a/networking/udhcp/common.h
+++ b/networking/udhcp/common.h
@@ -248,6 +248,7 @@ struct option_set *udhcp_find_option(struct option_set *opt_list, uint8_t code)
248/*** Logging ***/ 248/*** Logging ***/
249 249
250#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1 250#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
251# define IF_UDHCP_VERBOSE(...) __VA_ARGS__
251extern unsigned dhcp_verbose; 252extern unsigned dhcp_verbose;
252# define log1(...) do { if (dhcp_verbose >= 1) bb_info_msg(__VA_ARGS__); } while (0) 253# define log1(...) do { if (dhcp_verbose >= 1) bb_info_msg(__VA_ARGS__); } while (0)
253# if CONFIG_UDHCP_DEBUG >= 2 254# if CONFIG_UDHCP_DEBUG >= 2
@@ -263,6 +264,7 @@ void udhcp_dump_packet(struct dhcp_packet *packet) FAST_FUNC;
263# define log3(...) ((void)0) 264# define log3(...) ((void)0)
264# endif 265# endif
265#else 266#else
267# define IF_UDHCP_VERBOSE(...)
266# define udhcp_dump_packet(...) ((void)0) 268# define udhcp_dump_packet(...) ((void)0)
267# define log1(...) ((void)0) 269# define log1(...) ((void)0)
268# define log2(...) ((void)0) 270# define log2(...) ((void)0)