summaryrefslogtreecommitdiffstats
path: root/contrib/ntp/libntp/refnumtoa.c
diff options
context:
space:
mode:
authorroberto <roberto@FreeBSD.org>1999-12-09 13:01:21 +0000
committerroberto <roberto@FreeBSD.org>1999-12-09 13:01:21 +0000
commitef64b99e8412f2273dd2e8b3291c2f78ffc4667f (patch)
treefc0cfa1aab0ff6b228f511b410733ef4f35d1ead /contrib/ntp/libntp/refnumtoa.c
downloadFreeBSD-src-ef64b99e8412f2273dd2e8b3291c2f78ffc4667f.zip
FreeBSD-src-ef64b99e8412f2273dd2e8b3291c2f78ffc4667f.tar.gz
Virgin import of ntpd 4.0.98f
Diffstat (limited to 'contrib/ntp/libntp/refnumtoa.c')
-rw-r--r--contrib/ntp/libntp/refnumtoa.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/contrib/ntp/libntp/refnumtoa.c b/contrib/ntp/libntp/refnumtoa.c
new file mode 100644
index 0000000..a102015
--- /dev/null
+++ b/contrib/ntp/libntp/refnumtoa.c
@@ -0,0 +1,31 @@
+/*
+ * refnumtoa - return asciized refclock addresses stored in local array space
+ */
+#include <stdio.h>
+
+#include "ntp_fp.h"
+#include "lib_strbuf.h"
+#include "ntp_stdlib.h"
+
+char *
+refnumtoa(
+ u_int32 num
+ )
+{
+ register u_int32 netnum;
+ register char *buf;
+ register const char *rclock;
+
+ netnum = ntohl(num);
+
+ LIB_GETBUF(buf);
+
+ rclock = clockname((int)((u_long)netnum >> 8) & 0xff);
+
+ if (rclock != NULL)
+ (void)sprintf(buf, "%s(%lu)", rclock, (u_long)netnum & 0xff);
+ else
+ (void)sprintf(buf, "REFCLK(%lu,%lu)",
+ ((u_long)netnum >> 8) & 0xff, (u_long)netnum & 0xff);
+ return buf;
+}
OpenPOWER on IntegriCloud