opnsense-src/include/lib_strbuf.h
Ollivier Robert 2b45e011ca Virgin import of ntpd 4.2.6p5.
When the series of commits is complete, things like
https://cert.litnet.lt/en/docs/ntp-distributed-reflection-dos-attacks
should be fixed.

PR:		bin/148836 (except that we import a newer version)
Asked by:	Too many
MFC after:	2 weeks
2013-12-04 21:33:17 +00:00

28 lines
564 B
C

/*
* lib_strbuf.h - definitions for routines which use the common string buffers
*/
#include <ntp_types.h>
/*
* Sizes of things
*/
#define LIB_NUMBUFS 200
#define LIB_BUFLENGTH 80
/*
* Macro to get a pointer to the next buffer
*/
#define LIB_GETBUF(buf) \
do { \
if (!lib_inited) \
init_lib(); \
buf = &lib_stringbuf[lib_nextbuf][0]; \
if (++lib_nextbuf >= LIB_NUMBUFS) \
lib_nextbuf = 0; \
memset(buf, 0, LIB_BUFLENGTH); \
} while (0)
extern char lib_stringbuf[LIB_NUMBUFS][LIB_BUFLENGTH];
extern int lib_nextbuf;
extern int lib_inited;