Updated #includes etc. to use transports.[ch].

This commit is contained in:
George Kadianakis 2011-07-18 02:33:31 +02:00
parent d8c04c7ea5
commit a8f21f91cf
7 changed files with 12 additions and 12 deletions

View File

@ -39,7 +39,7 @@ libtor_a_SOURCES = \
networkstatus.c \ networkstatus.c \
nodelist.c \ nodelist.c \
onion.c \ onion.c \
pluggable_transports.c \ transports.c \
policies.c \ policies.c \
reasons.c \ reasons.c \
relay.c \ relay.c \
@ -105,7 +105,7 @@ noinst_HEADERS = \
ntmain.h \ ntmain.h \
onion.h \ onion.h \
or.h \ or.h \
pluggable_transports.h \ transports.h \
policies.h \ policies.h \
reasons.h \ reasons.h \
relay.h \ relay.h \

View File

@ -26,7 +26,7 @@
#include "nodelist.h" #include "nodelist.h"
#include "onion.h" #include "onion.h"
#include "policies.h" #include "policies.h"
#include "pluggable_transports.h" #include "transports.h"
#include "relay.h" #include "relay.h"
#include "rephist.h" #include "rephist.h"
#include "router.h" #include "router.h"

View File

@ -35,7 +35,7 @@
#include "router.h" #include "router.h"
#include "util.h" #include "util.h"
#include "routerlist.h" #include "routerlist.h"
#include "pluggable_transports.h" #include "transports.h"
#ifdef MS_WINDOWS #ifdef MS_WINDOWS
#include <shlobj.h> #include <shlobj.h>
#endif #endif

View File

@ -37,7 +37,7 @@
#include "ntmain.h" #include "ntmain.h"
#include "onion.h" #include "onion.h"
#include "policies.h" #include "policies.h"
#include "pluggable_transports.h" #include "transports.h"
#include "relay.h" #include "relay.h"
#include "rendclient.h" #include "rendclient.h"
#include "rendcommon.h" #include "rendcommon.h"

View File

@ -2,7 +2,7 @@
/* See LICENSE for licensing information */ /* See LICENSE for licensing information */
/** /**
* \file pluggable_transports.c * \file transports.c
* \brief Pluggable Transports related code. * \brief Pluggable Transports related code.
**/ **/
@ -10,7 +10,7 @@
#include "or.h" #include "or.h"
#include "config.h" #include "config.h"
#include "circuitbuild.h" #include "circuitbuild.h"
#include "pluggable_transports.h" #include "transports.h"
/* ASN TIDY THESE UP*/ /* ASN TIDY THESE UP*/
static void set_environ(char ***envp, const char *method, static void set_environ(char ***envp, const char *method,

View File

@ -4,12 +4,12 @@
/* See LICENSE for licensing information */ /* See LICENSE for licensing information */
/** /**
* \file pluggable_transpots.h * \file transports.h
* \brief Headers for pluggable_transpots.c * \brief Headers for transports.c
**/ **/
#ifndef TOR_PLUGGABLE_TRANSPORTS_H #ifndef TOR_TRANSPORTS_H
#define TOR_PLUGGABLE_TRANSPORTS_H #define TOR_TRANSPORTS_H
int pt_managed_launch_proxy(const char *method, int pt_managed_launch_proxy(const char *method,
char **proxy_argv, int is_server); char **proxy_argv, int is_server);

View File

@ -6,7 +6,7 @@
#include "orconfig.h" #include "orconfig.h"
#define PT_PRIVATE #define PT_PRIVATE
#include "or.h" #include "or.h"
#include "pluggable_transports.h" #include "transports.h"
#include "circuitbuild.h" #include "circuitbuild.h"
#include "test.h" #include "test.h"