mirror of
https://github.com/yarrick/iodine.git
synced 2024-12-23 05:43:32 +02:00
max redefined
This commit is contained in:
parent
08643a6641
commit
b91fb102d3
2 changed files with 8 additions and 0 deletions
4
dnstun.c
4
dnstun.c
|
@ -29,6 +29,10 @@
|
|||
#include "tun.h"
|
||||
#include "dns.h"
|
||||
|
||||
#ifndef MAX
|
||||
#define MAX(a,b) ((a)>(b)?(a):(b))
|
||||
#endif
|
||||
|
||||
#define FRAMESIZE (64*1024)
|
||||
|
||||
int running = 1;
|
||||
|
|
|
@ -30,6 +30,10 @@
|
|||
#include "dns.h"
|
||||
#include "dnsd.h"
|
||||
|
||||
#ifndef MAX
|
||||
#define MAX(a,b) ((a)>(b)?(a):(b))
|
||||
#endif
|
||||
|
||||
int running = 1;
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue