freebsd-dev/contrib/ntp/libntp/lib_strbuf.c

40 lines
633 B
C
Raw Normal View History

1999-12-09 13:01:21 +00:00
/*
* lib_strbuf - library string storage
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
1999-12-09 13:01:21 +00:00
#include <isc/net.h>
#include <isc/result.h>
#include "ntp_fp.h"
2001-08-29 14:35:15 +00:00
#include "ntp_stdlib.h"
1999-12-09 13:01:21 +00:00
#include "lib_strbuf.h"
1999-12-09 13:01:21 +00:00
/*
* Storage declarations
*/
int debug;
libbufstr lib_stringbuf[LIB_NUMBUF];
int lib_nextbuf;
int ipv4_works;
int ipv6_works;
int lib_inited;
1999-12-09 13:01:21 +00:00
/*
* initialization routine. Might be needed if the code is ROMized.
*/
void
init_lib(void)
{
if (lib_inited)
return;
ipv4_works = (ISC_R_SUCCESS == isc_net_probeipv4());
ipv6_works = (ISC_R_SUCCESS == isc_net_probeipv6());
init_systime();
lib_inited = TRUE;
1999-12-09 13:01:21 +00:00
}