summaryrefslogtreecommitdiffstats
path: root/contrib/ntp/libntp/modetoa.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ntp/libntp/modetoa.c')
-rw-r--r--contrib/ntp/libntp/modetoa.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/contrib/ntp/libntp/modetoa.c b/contrib/ntp/libntp/modetoa.c
new file mode 100644
index 0000000..405aef8
--- /dev/null
+++ b/contrib/ntp/libntp/modetoa.c
@@ -0,0 +1,34 @@
+/*
+ * modetoa - return an asciized mode
+ */
+#include <stdio.h>
+
+#include "lib_strbuf.h"
+#include "ntp_stdlib.h"
+
+const char *
+modetoa(
+ int mode
+ )
+{
+ char *bp;
+ static const char *modestrings[] = {
+ "unspec",
+ "sym_active",
+ "sym_passive",
+ "client",
+ "server",
+ "broadcast",
+ "control",
+ "private",
+ "bclient",
+ };
+
+ if (mode < 0 || mode >= (sizeof modestrings)/sizeof(char *)) {
+ LIB_GETBUF(bp);
+ (void)sprintf(bp, "mode#%d", mode);
+ return bp;
+ }
+
+ return modestrings[mode];
+}
OpenPOWER on IntegriCloud