Compare commits

...

5 Commits

Author SHA1 Message Date
Adrien Gallouët
0664fc3b21 Update mud 2017-01-18 15:27:18 +00:00
Adrien Gallouët
2cb24c0523 Update mud 2017-01-16 16:11:18 +00:00
Adrien Gallouët
65be22202c Update mud 2017-01-12 13:26:35 +00:00
Adrien Gallouët
6cc32bafd9 Code cleanup 2017-01-12 13:26:23 +00:00
Adrien Gallouët
6c268e658f Reset default MTU to 1500 2017-01-06 13:17:46 +00:00
3 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,6 @@ glorytun_SOURCES = \
src/db.c \
src/db.h
glorytun_CFLAGS += -I$(srcdir)/mud
glorytun_SOURCES += \
mud/mud.h \
mud/mud.c

2
mud

Submodule mud updated: 2d171c6dd9...f6b6610980

View File

@@ -18,7 +18,7 @@
#include <arpa/inet.h>
#include <netdb.h>
#include "mud.h"
#include "../mud/mud.h"
#ifndef O_CLOEXEC
#define O_CLOEXEC 0
@@ -50,6 +50,7 @@ static struct {
.bind = {
.port = 5000,
},
.mtu = 1500,
.timeout = 5000,
.ipv4 = 1,
#ifdef __linux__