1999-12-09 13:01:21 +00:00
|
|
|
/*
|
|
|
|
* numtoa - return asciized network numbers store in local array space
|
|
|
|
*/
|
2013-12-04 21:33:17 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_NETINET_IN_H
|
|
|
|
#include <netinet/in.h> /* ntohl */
|
|
|
|
#endif
|
|
|
|
|
1999-12-09 13:01:21 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "ntp_fp.h"
|
|
|
|
#include "lib_strbuf.h"
|
|
|
|
#include "ntp_stdlib.h"
|
|
|
|
|
|
|
|
char *
|
|
|
|
numtoa(
|
|
|
|
u_int32 num
|
|
|
|
)
|
|
|
|
{
|
|
|
|
register u_int32 netnum;
|
|
|
|
register char *buf;
|
|
|
|
|
|
|
|
netnum = ntohl(num);
|
|
|
|
LIB_GETBUF(buf);
|
2013-12-04 21:33:17 +00:00
|
|
|
snprintf(buf, LIB_BUFLENGTH, "%lu.%lu.%lu.%lu",
|
|
|
|
((u_long)netnum >> 24) & 0xff,
|
|
|
|
((u_long)netnum >> 16) & 0xff,
|
|
|
|
((u_long)netnum >> 8) & 0xff,
|
|
|
|
(u_long)netnum & 0xff);
|
1999-12-09 13:01:21 +00:00
|
|
|
return buf;
|
|
|
|
}
|