aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-04-17 07:24:19 +0000
committerMike Frysinger <vapier@gentoo.org>2005-04-17 07:24:19 +0000
commitfa69f110d978a374e6ab1c213ff994446466b9dc (patch)
tree638b47992053b973046bc6e5ba50294702832414 /include
parent77dbe738d23da4065a156dd61ed0636f265e1bb6 (diff)
downloadbusybox-fa69f110d978a374e6ab1c213ff994446466b9dc.tar.gz
import fakeidentd module started by Thomas Lundquist
Diffstat (limited to 'include')
-rw-r--r--include/applets.h3
-rw-r--r--include/usage.h7
2 files changed, 10 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h
index 90a081550..7771c17a9 100644
--- a/include/applets.h
+++ b/include/applets.h
@@ -185,6 +185,9 @@
#ifdef CONFIG_EXPR
APPLET(expr, expr_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
#endif
+#ifdef CONFIG_FAKEIDENTD
+ APPLET(fakeidentd, fakeidentd_main, _BB_DIR_USR_SBIN, _BB_SUID_NEVER)
+#endif
#ifdef CONFIG_FALSE
APPLET(false, false_main, _BB_DIR_BIN, _BB_SUID_NEVER)
#endif
diff --git a/include/usage.h b/include/usage.h
index 6d594dc01..128aee2f5 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -575,6 +575,13 @@
"\\( and \\) or null; if \\( and \\) are not used, they return the number \n" \
"of characters matched or 0."
+#define fakeidentd_trivial_usage \
+ "[-b ip] [STRING]"
+#define fakeidentd_full_usage \
+ "Returns a set string to auth requests\n\n"\
+ "\t-b\tBind to ip address\n"\
+ "\tSTRING\tThe ident answer string (default is nobody)"
+
#define false_trivial_usage \
""
#define false_full_usage \