Commit 50148d3c authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Rename request to resend.

parent 1c9c4448
...@@ -7,10 +7,10 @@ DEFINES = $(PLATFORM_DEFINES) ...@@ -7,10 +7,10 @@ DEFINES = $(PLATFORM_DEFINES)
CFLAGS = $(CDEBUGFLAGS) $(DEFINES) $(EXTRA_DEFINES) CFLAGS = $(CDEBUGFLAGS) $(DEFINES) $(EXTRA_DEFINES)
SRCS = babel.c net.c kernel.c util.c network.c source.c neighbour.c \ SRCS = babel.c net.c kernel.c util.c network.c source.c neighbour.c \
route.c xroute.c message.c request.c filter.c route.c xroute.c message.c resend.c filter.c
OBJS = babel.o net.o kernel.o util.o network.o source.o neighbour.o \ OBJS = babel.o net.o kernel.o util.o network.o source.o neighbour.o \
route.o xroute.o message.o request.o filter.o route.o xroute.o message.o resend.o filter.o
babel: $(OBJS) babel: $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) -o babel $(OBJS) $(LDLIBS) $(CC) $(CFLAGS) $(LDFLAGS) -o babel $(OBJS) $(LDLIBS)
......
...@@ -48,7 +48,7 @@ THE SOFTWARE. ...@@ -48,7 +48,7 @@ THE SOFTWARE.
#include "route.h" #include "route.h"
#include "xroute.h" #include "xroute.h"
#include "message.h" #include "message.h"
#include "request.h" #include "resend.h"
#include "filter.h" #include "filter.h"
struct timeval now; struct timeval now;
......
...@@ -35,7 +35,7 @@ THE SOFTWARE. ...@@ -35,7 +35,7 @@ THE SOFTWARE.
#include "neighbour.h" #include "neighbour.h"
#include "route.h" #include "route.h"
#include "xroute.h" #include "xroute.h"
#include "request.h" #include "resend.h"
#include "message.h" #include "message.h"
#include "filter.h" #include "filter.h"
......
...@@ -28,7 +28,7 @@ THE SOFTWARE. ...@@ -28,7 +28,7 @@ THE SOFTWARE.
#include "babel.h" #include "babel.h"
#include "util.h" #include "util.h"
#include "neighbour.h" #include "neighbour.h"
#include "request.h" #include "resend.h"
#include "message.h" #include "message.h"
#include "network.h" #include "network.h"
#include "filter.h" #include "filter.h"
......
...@@ -35,7 +35,7 @@ THE SOFTWARE. ...@@ -35,7 +35,7 @@ THE SOFTWARE.
#include "route.h" #include "route.h"
#include "xroute.h" #include "xroute.h"
#include "message.h" #include "message.h"
#include "request.h" #include "resend.h"
#include "filter.h" #include "filter.h"
struct route routes[MAXROUTES]; struct route routes[MAXROUTES];
......
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