NetBSD/lib/libntp/refnumtoa.c

33 lines
662 B
C
Raw Normal View History

1999-07-02 19:58:35 +04:00
/* $NetBSD: refnumtoa.c,v 1.3 1999/07/02 15:58:36 simonb Exp $ */
1998-01-09 06:15:09 +03:00
1997-04-18 17:22:49 +04:00
/*
* 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_int32 num;
{
register u_int32 netnum;
register char *buf;
register const char *rclock;
1999-07-02 19:58:35 +04:00
1997-04-18 17:22:49 +04:00
netnum = ntohl(num);
1999-07-02 19:58:35 +04:00
1997-04-18 17:22:49 +04:00
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;
}