|
|
|
@ -53,23 +53,23 @@ Signed-off-by: Jo-Philipp Wich <jo@mein.io> |
|
|
|
|
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
+ */
|
|
|
|
|
+
|
|
|
|
|
+//config:config NSLOOKUP_LEDE
|
|
|
|
|
+//config: bool "nslookup_lede"
|
|
|
|
|
+//config:config NSLOOKUP_OPENWRT
|
|
|
|
|
+//config: bool "nslookup_openwrt"
|
|
|
|
|
+//config: depends on !NSLOOKUP
|
|
|
|
|
+//config: default y
|
|
|
|
|
+//config: help
|
|
|
|
|
+//config: nslookup is a tool to query Internet name servers (LEDE flavor).
|
|
|
|
|
+//config:
|
|
|
|
|
+//config:config FEATURE_NSLOOKUP_LEDE_LONG_OPTIONS
|
|
|
|
|
+//config:config FEATURE_NSLOOKUP_OPENWRT_LONG_OPTIONS
|
|
|
|
|
+//config: bool "Enable long options"
|
|
|
|
|
+//config: default y
|
|
|
|
|
+//config: depends on NSLOOKUP_LEDE && LONG_OPTS
|
|
|
|
|
+//config: depends on NSLOOKUP_OPENWRT && LONG_OPTS
|
|
|
|
|
+//config: help
|
|
|
|
|
+//config: Support long options for the nslookup applet.
|
|
|
|
|
+
|
|
|
|
|
+//applet:IF_NSLOOKUP_LEDE(APPLET(nslookup, BB_DIR_USR_BIN, BB_SUID_DROP))
|
|
|
|
|
+//applet:IF_NSLOOKUP_OPENWRT(APPLET(nslookup, BB_DIR_USR_BIN, BB_SUID_DROP))
|
|
|
|
|
+
|
|
|
|
|
+//kbuild:lib-$(CONFIG_NSLOOKUP_LEDE) += nslookup_lede.o
|
|
|
|
|
+//kbuild:lib-$(CONFIG_NSLOOKUP_OPENWRT) += nslookup_lede.o
|
|
|
|
|
+
|
|
|
|
|
+//usage:#define nslookup_lede_trivial_usage
|
|
|
|
|
+//usage: "[HOST] [SERVER]"
|
|
|
|
@ -753,7 +753,7 @@ Signed-off-by: Jo-Philipp Wich <jo@mein.io> |
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+#if ENABLE_FEATURE_NSLOOKUP_LEDE_LONG_OPTIONS
|
|
|
|
|
+#if ENABLE_FEATURE_NSLOOKUP_OPENWRT_LONG_OPTIONS
|
|
|
|
|
+static const char nslookup_longopts[] ALIGN1 =
|
|
|
|
|
+ "type\0" Required_argument "q"
|
|
|
|
|
+ "querytype\0" Required_argument "q"
|
|
|
|
@ -778,7 +778,7 @@ Signed-off-by: Jo-Philipp Wich <jo@mein.io> |
|
|
|
|
+ unsigned int types = 0;
|
|
|
|
|
+ HEADER *header;
|
|
|
|
|
+
|
|
|
|
|
+#if ENABLE_FEATURE_NSLOOKUP_LEDE_LONG_OPTIONS
|
|
|
|
|
+#if ENABLE_FEATURE_NSLOOKUP_OPENWRT_LONG_OPTIONS
|
|
|
|
|
+ applet_long_options = nslookup_longopts;
|
|
|
|
|
+#endif
|
|
|
|
|
+
|
|
|
|
|