Commit f8d4bc9e authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Rename filter to config.

parent ecd54b48
......@@ -9,10 +9,10 @@ CFLAGS = $(CDEBUGFLAGS) $(DEFINES) $(EXTRA_DEFINES)
LDLIBS = -lrt
SRCS = babel.c net.c kernel.c util.c network.c source.c neighbour.c \
route.c xroute.c message.c resend.c filter.c local.c
route.c xroute.c message.c resend.c config.c local.c
OBJS = babel.o net.o kernel.o util.o network.o source.o neighbour.o \
route.o xroute.o message.o resend.o filter.o local.o
route.o xroute.o message.o resend.o config.o local.o
babel: $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) -o babel $(OBJS) $(LDLIBS)
......
......@@ -49,7 +49,7 @@ THE SOFTWARE.
#include "xroute.h"
#include "message.h"
#include "resend.h"
#include "filter.h"
#include "config.h"
#include "local.h"
struct timeval now;
......
......@@ -26,7 +26,7 @@ THE SOFTWARE.
#include "babel.h"
#include "util.h"
#include "filter.h"
#include "config.h"
struct filter *input_filters = NULL;
struct filter *output_filters = NULL;
......
......@@ -37,7 +37,7 @@ THE SOFTWARE.
#include "xroute.h"
#include "resend.h"
#include "message.h"
#include "filter.h"
#include "config.h"
#include "kernel.h"
unsigned char packet_header[4] = {42, 2};
......
......@@ -36,7 +36,7 @@ THE SOFTWARE.
#include "neighbour.h"
#include "message.h"
#include "route.h"
#include "filter.h"
#include "config.h"
struct network *networks = NULL;
......
......@@ -31,7 +31,7 @@ THE SOFTWARE.
#include "resend.h"
#include "message.h"
#include "network.h"
#include "filter.h"
#include "config.h"
struct timeval resend_time = {0, 0};
struct resend *to_resend = NULL;
......
......@@ -36,7 +36,7 @@ THE SOFTWARE.
#include "xroute.h"
#include "message.h"
#include "resend.h"
#include "filter.h"
#include "config.h"
#include "local.h"
struct route *routes = NULL;
......
......@@ -34,7 +34,7 @@ THE SOFTWARE.
#include "route.h"
#include "xroute.h"
#include "util.h"
#include "filter.h"
#include "config.h"
#include "network.h"
#include "local.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment