blob: 8bb7d38091fa6f24dad89f43ea1e6544499bf7e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
* 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(num)
u_long num;
{
register u_long netnum;
register char *buf;
register const char *rclock;
netnum = ntohl(num);
LIB_GETBUF(buf);
rclock = clockname((int)((netnum >> 8) & 0xff));
if (rclock != NULL)
(void)sprintf(buf, "%s(%lu)", rclock, netnum & 0xff);
else
(void)sprintf(buf, "REFCLK(%lu,%lu)",
(netnum >> 8) & 0xff, netnum&0xff);
return buf;
}
|