From de923c5f36f5244e888b616de42b6a1cbf045372 Mon Sep 17 00:00:00 2001 From: laforge Date: Thu, 10 Aug 2000 11:45:49 +0000 Subject: Initial revision --- ulogd/libipulog/Makefile | 14 +++++++++++++ ulogd/libipulog/include/libipulog/libipulog.h | 30 +++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 ulogd/libipulog/Makefile create mode 100644 ulogd/libipulog/include/libipulog/libipulog.h (limited to 'ulogd/libipulog') diff --git a/ulogd/libipulog/Makefile b/ulogd/libipulog/Makefile new file mode 100644 index 0000000..e737363 --- /dev/null +++ b/ulogd/libipulog/Makefile @@ -0,0 +1,14 @@ +CC = gcc +CFLAGS = -I./include # -g + +ulog_test: ulog_test.c libipulog.a + $(CC) $(CFLAGS) -i ulog_test.c libipulog.a -o ulog_test + +libipulog.o: libipulog.c + $(CC) $(CFLAGS) -c libipulog.c -o libipulog.o + +libipulog.a: libipulog.o + ld -i libipulog.o -o libipulog.a + +clean: + rm -f ulog_test libipulog.o libipulog.a diff --git a/ulogd/libipulog/include/libipulog/libipulog.h b/ulogd/libipulog/include/libipulog/libipulog.h new file mode 100644 index 0000000..9f920dd --- /dev/null +++ b/ulogd/libipulog/include/libipulog/libipulog.h @@ -0,0 +1,30 @@ +#ifndef _LIBIPULOG_H +#define _LIBIPULOG_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +struct ipulog_handle; + +u_int32_t ipulog_group2gmask(u_int32_t group); + +struct ipulog_handle *ipulog_create_handle(u_int32_t gmask); + +void ipulog_destroy_handle(struct ipulog_handle *h); + +ssize_t ipulog_read(struct ipulog_handle *h, + unsigned char *buf, size_t len, int timeout); + +ulog_packet_msg_t *ipulog_get_packet(const unsigned char *buf); + +void ipulog_perror(const char *s); + +#endif /* _LIBULOG_H */ -- cgit v1.2.3