Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#include debug.h from system.h #37

Merged
merged 1 commit into from
Feb 23, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/chilli.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

#include "chilli.h"
#include "bstrlib.h"
#include "debug.h"
#ifdef ENABLE_MODULES
#include "chilli_module.h"
#endif
Expand Down
1 change: 1 addition & 0 deletions src/chilli.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#define _CHILLI_H

#include "system.h"
#include "debug.h"
#include "chilli_limits.h"
#include "tun.h"
#include "ippool.h"
Expand Down
1 change: 0 additions & 1 deletion src/conn.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
*/

#include "chilli.h"
#include "debug.h"

#if defined(ENABLE_CHILLIPROXY) || defined(ENABLE_CHILLIRADSEC) || defined(ENABLE_CHILLIREDIR)

Expand Down
1 change: 0 additions & 1 deletion src/dhcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#ifdef ENABLE_MODULES
#include "chilli_module.h"
#endif
#include "debug.h"

const uint32_t DHCP_OPTION_MAGIC = 0x63825363;
static uint8_t bmac[PKT_ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Expand Down
1 change: 0 additions & 1 deletion src/dns.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
*/

#include "chilli.h"
#include "debug.h"

#define antidnstunnel _options.dnsparanoia

Expand Down
1 change: 0 additions & 1 deletion src/garden.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
*/

#include "chilli.h"
#include "debug.h"

#ifdef HAVE_PATRICIA
struct node_pass_through_list {
Expand Down
1 change: 0 additions & 1 deletion src/main-opt.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#include "cmdline.h"
#include "system.h"
#include "chilli.h"
#include "debug.h"

struct options_t _options;

Expand Down
1 change: 0 additions & 1 deletion src/main-proxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
#define MAIN_FILE

#include "chilli.h"
#include "debug.h"

#ifdef USING_CURL
#include <curl/curl.h>
Expand Down
1 change: 0 additions & 1 deletion src/main-redir.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
#define MAIN_FILE

#include "chilli.h"
#include "debug.h"

struct options_t _options;

Expand Down
1 change: 0 additions & 1 deletion src/mssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@

#include "chilli.h"
#include "ssl.h"
#include "debug.h"

#define SSL_SOCKET_EOF 0x0001
#define SSL_SOCKET_CLOSE_NOTIFY 0x0002
Expand Down
1 change: 0 additions & 1 deletion src/net.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
*/

#include "chilli.h"
#include "debug.h"
#ifdef ENABLE_MODULES
#include "chilli_module.h"
#endif
Expand Down
1 change: 0 additions & 1 deletion src/redir.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

#include "system.h"
#include "chilli.h"
#include "debug.h"
#ifdef ENABLE_MODULES
#include "chilli_module.h"
#endif
Expand Down
1 change: 0 additions & 1 deletion src/safe.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
*/

#include "chilli.h"
#include "debug.h"
#ifdef ENABLE_MODULES
#include "chilli_module.h"
#endif
Expand Down
1 change: 0 additions & 1 deletion src/ssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
#include "system.h"
#ifdef HAVE_SSL
#include "chilli.h"
#include "debug.h"

static int openssl_init = 0;
static openssl_env * sslenv_svr = 0;
Expand Down
1 change: 0 additions & 1 deletion src/tun.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
*/

#include "chilli.h"
#include "debug.h"
#ifdef ENABLE_MULTIROUTE
#include "rtmon.h"
extern struct rtmon_t _rtmon;
Expand Down