Browse Source

fix #218

pull/224/head
Max Lv 10 years ago
parent
commit
59f0699ce1
3 changed files with 6 additions and 2 deletions
  1. 4
      src/common.h
  2. 2
      src/local.c
  3. 2
      src/udprelay.c

4
src/common.h

@ -37,6 +37,10 @@
#endif
#ifndef SOL_TCP
#define SOL_TCP IPPROTO_TCP
#endif
int init_udprelay(const char *server_host, const char *server_port,
#ifdef UDPRELAY_LOCAL
const struct sockaddr *remote_addr, const int remote_addr_len,

2
src/local.c

@ -63,9 +63,9 @@
#include "netutils.h"
#include "utils.h"
#include "local.h"
#include "socks5.h"
#include "acl.h"
#include "local.h"
#ifndef EAGAIN
#define EAGAIN EWOULDBLOCK

2
src/udprelay.c

@ -57,8 +57,8 @@
#include <udns.h>
#include "utils.h"
#include "udprelay.h"
#include "cache.h"
#include "udprelay.h"
#ifdef UDPRELAY_REMOTE
#define MAX_UDP_CONN_NUM 1024

Loading…
Cancel
Save