mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Convert all include-guard macros to avoid reserved identifiers.
In C, we technically aren't supposed to define our own things that start with an underscore. This is a purely machine-generated commit. First, I ran this script on all the headers in src/{common,or,test,tools/*}/*.h : ============================== use strict; my %macros = (); my %skipped = (); FILE: for my $fn (@ARGV) { my $f = $fn; if ($fn !~ /^\.\//) { $f = "./$fn"; } $skipped{$fn} = 0; open(F, $fn); while (<F>) { if (/^#ifndef ([A-Za-z0-9_]+)/) { $macros{$fn} = $1; next FILE; } } } print "#!/usr/bin/perl -w -i -p\n\n"; for my $fn (@ARGV) { if (! exists $macros{$fn}) { print "# No macro known for $fn!\n" if (!$skipped{$fn}); next; } if ($macros{$fn} !~ /_H_?$/) { print "# Weird macro for $fn...\n"; } my $goodmacro = uc $fn; $goodmacro =~ s#.*/##; $goodmacro =~ s#[\/\-\.]#_#g; print "s/(?<![A-Za-z0-9_])$macros{$fn}(?![A-Za-z0-9_])/TOR_${goodmacro}/g;\n" } ============================== It produced the following output, which I then re-ran on those same files: ============================== s/(?<![A-Za-z0-9_])_TOR_ADDRESS_H(?![A-Za-z0-9_])/TOR_ADDRESS_H/g; s/(?<![A-Za-z0-9_])_TOR_AES_H(?![A-Za-z0-9_])/TOR_AES_H/g; s/(?<![A-Za-z0-9_])_TOR_COMPAT_H(?![A-Za-z0-9_])/TOR_COMPAT_H/g; s/(?<![A-Za-z0-9_])_TOR_COMPAT_LIBEVENT_H(?![A-Za-z0-9_])/TOR_COMPAT_LIBEVENT_H/g; s/(?<![A-Za-z0-9_])_TOR_CONTAINER_H(?![A-Za-z0-9_])/TOR_CONTAINER_H/g; s/(?<![A-Za-z0-9_])_TOR_CRYPTO_H(?![A-Za-z0-9_])/TOR_CRYPTO_H/g; s/(?<![A-Za-z0-9_])TOR_DI_OPS_H(?![A-Za-z0-9_])/TOR_DI_OPS_H/g; s/(?<![A-Za-z0-9_])_TOR_MEMAREA_H(?![A-Za-z0-9_])/TOR_MEMAREA_H/g; s/(?<![A-Za-z0-9_])_TOR_MEMPOOL_H(?![A-Za-z0-9_])/TOR_MEMPOOL_H/g; s/(?<![A-Za-z0-9_])TOR_PROCMON_H(?![A-Za-z0-9_])/TOR_PROCMON_H/g; s/(?<![A-Za-z0-9_])_TOR_TORGZIP_H(?![A-Za-z0-9_])/TOR_TORGZIP_H/g; s/(?<![A-Za-z0-9_])_TOR_TORINT_H(?![A-Za-z0-9_])/TOR_TORINT_H/g; s/(?<![A-Za-z0-9_])_TOR_LOG_H(?![A-Za-z0-9_])/TOR_TORLOG_H/g; s/(?<![A-Za-z0-9_])_TOR_TORTLS_H(?![A-Za-z0-9_])/TOR_TORTLS_H/g; s/(?<![A-Za-z0-9_])_TOR_UTIL_H(?![A-Za-z0-9_])/TOR_UTIL_H/g; s/(?<![A-Za-z0-9_])_TOR_BUFFERS_H(?![A-Za-z0-9_])/TOR_BUFFERS_H/g; s/(?<![A-Za-z0-9_])_TOR_CHANNEL_H(?![A-Za-z0-9_])/TOR_CHANNEL_H/g; s/(?<![A-Za-z0-9_])_TOR_CHANNEL_TLS_H(?![A-Za-z0-9_])/TOR_CHANNELTLS_H/g; s/(?<![A-Za-z0-9_])_TOR_CIRCUITBUILD_H(?![A-Za-z0-9_])/TOR_CIRCUITBUILD_H/g; s/(?<![A-Za-z0-9_])_TOR_CIRCUITLIST_H(?![A-Za-z0-9_])/TOR_CIRCUITLIST_H/g; s/(?<![A-Za-z0-9_])_TOR_CIRCUITMUX_EWMA_H(?![A-Za-z0-9_])/TOR_CIRCUITMUX_EWMA_H/g; s/(?<![A-Za-z0-9_])_TOR_CIRCUITMUX_H(?![A-Za-z0-9_])/TOR_CIRCUITMUX_H/g; s/(?<![A-Za-z0-9_])_TOR_CIRCUITUSE_H(?![A-Za-z0-9_])/TOR_CIRCUITUSE_H/g; s/(?<![A-Za-z0-9_])_TOR_COMMAND_H(?![A-Za-z0-9_])/TOR_COMMAND_H/g; s/(?<![A-Za-z0-9_])_TOR_CONFIG_H(?![A-Za-z0-9_])/TOR_CONFIG_H/g; s/(?<![A-Za-z0-9_])TOR_CONFPARSE_H(?![A-Za-z0-9_])/TOR_CONFPARSE_H/g; s/(?<![A-Za-z0-9_])_TOR_CONNECTION_EDGE_H(?![A-Za-z0-9_])/TOR_CONNECTION_EDGE_H/g; s/(?<![A-Za-z0-9_])_TOR_CONNECTION_H(?![A-Za-z0-9_])/TOR_CONNECTION_H/g; s/(?<![A-Za-z0-9_])_TOR_CONNECTION_OR_H(?![A-Za-z0-9_])/TOR_CONNECTION_OR_H/g; s/(?<![A-Za-z0-9_])_TOR_CONTROL_H(?![A-Za-z0-9_])/TOR_CONTROL_H/g; s/(?<![A-Za-z0-9_])_TOR_CPUWORKER_H(?![A-Za-z0-9_])/TOR_CPUWORKER_H/g; s/(?<![A-Za-z0-9_])_TOR_DIRECTORY_H(?![A-Za-z0-9_])/TOR_DIRECTORY_H/g; s/(?<![A-Za-z0-9_])_TOR_DIRSERV_H(?![A-Za-z0-9_])/TOR_DIRSERV_H/g; s/(?<![A-Za-z0-9_])_TOR_DIRVOTE_H(?![A-Za-z0-9_])/TOR_DIRVOTE_H/g; s/(?<![A-Za-z0-9_])_TOR_DNS_H(?![A-Za-z0-9_])/TOR_DNS_H/g; s/(?<![A-Za-z0-9_])_TOR_DNSSERV_H(?![A-Za-z0-9_])/TOR_DNSSERV_H/g; s/(?<![A-Za-z0-9_])TOR_EVENTDNS_TOR_H(?![A-Za-z0-9_])/TOR_EVENTDNS_TOR_H/g; s/(?<![A-Za-z0-9_])_TOR_GEOIP_H(?![A-Za-z0-9_])/TOR_GEOIP_H/g; s/(?<![A-Za-z0-9_])_TOR_HIBERNATE_H(?![A-Za-z0-9_])/TOR_HIBERNATE_H/g; s/(?<![A-Za-z0-9_])_TOR_MAIN_H(?![A-Za-z0-9_])/TOR_MAIN_H/g; s/(?<![A-Za-z0-9_])_TOR_MICRODESC_H(?![A-Za-z0-9_])/TOR_MICRODESC_H/g; s/(?<![A-Za-z0-9_])_TOR_NETWORKSTATUS_H(?![A-Za-z0-9_])/TOR_NETWORKSTATUS_H/g; s/(?<![A-Za-z0-9_])_TOR_NODELIST_H(?![A-Za-z0-9_])/TOR_NODELIST_H/g; s/(?<![A-Za-z0-9_])_TOR_NTMAIN_H(?![A-Za-z0-9_])/TOR_NTMAIN_H/g; s/(?<![A-Za-z0-9_])_TOR_ONION_H(?![A-Za-z0-9_])/TOR_ONION_H/g; s/(?<![A-Za-z0-9_])_TOR_OR_H(?![A-Za-z0-9_])/TOR_OR_H/g; s/(?<![A-Za-z0-9_])_TOR_POLICIES_H(?![A-Za-z0-9_])/TOR_POLICIES_H/g; s/(?<![A-Za-z0-9_])_TOR_REASONS_H(?![A-Za-z0-9_])/TOR_REASONS_H/g; s/(?<![A-Za-z0-9_])_TOR_RELAY_H(?![A-Za-z0-9_])/TOR_RELAY_H/g; s/(?<![A-Za-z0-9_])_TOR_RENDCLIENT_H(?![A-Za-z0-9_])/TOR_RENDCLIENT_H/g; s/(?<![A-Za-z0-9_])_TOR_RENDCOMMON_H(?![A-Za-z0-9_])/TOR_RENDCOMMON_H/g; s/(?<![A-Za-z0-9_])_TOR_RENDMID_H(?![A-Za-z0-9_])/TOR_RENDMID_H/g; s/(?<![A-Za-z0-9_])_TOR_RENDSERVICE_H(?![A-Za-z0-9_])/TOR_RENDSERVICE_H/g; s/(?<![A-Za-z0-9_])_TOR_REPHIST_H(?![A-Za-z0-9_])/TOR_REPHIST_H/g; s/(?<![A-Za-z0-9_])_TOR_REPLAYCACHE_H(?![A-Za-z0-9_])/TOR_REPLAYCACHE_H/g; s/(?<![A-Za-z0-9_])_TOR_ROUTER_H(?![A-Za-z0-9_])/TOR_ROUTER_H/g; s/(?<![A-Za-z0-9_])_TOR_ROUTERLIST_H(?![A-Za-z0-9_])/TOR_ROUTERLIST_H/g; s/(?<![A-Za-z0-9_])_TOR_ROUTERPARSE_H(?![A-Za-z0-9_])/TOR_ROUTERPARSE_H/g; s/(?<![A-Za-z0-9_])TOR_ROUTERSET_H(?![A-Za-z0-9_])/TOR_ROUTERSET_H/g; s/(?<![A-Za-z0-9_])TOR_STATEFILE_H(?![A-Za-z0-9_])/TOR_STATEFILE_H/g; s/(?<![A-Za-z0-9_])_TOR_STATUS_H(?![A-Za-z0-9_])/TOR_STATUS_H/g; s/(?<![A-Za-z0-9_])TOR_TRANSPORTS_H(?![A-Za-z0-9_])/TOR_TRANSPORTS_H/g; s/(?<![A-Za-z0-9_])_TOR_TEST_H(?![A-Za-z0-9_])/TOR_TEST_H/g; s/(?<![A-Za-z0-9_])_TOR_FW_HELPER_H(?![A-Za-z0-9_])/TOR_TOR_FW_HELPER_H/g; s/(?<![A-Za-z0-9_])_TOR_FW_HELPER_NATPMP_H(?![A-Za-z0-9_])/TOR_TOR_FW_HELPER_NATPMP_H/g; s/(?<![A-Za-z0-9_])_TOR_FW_HELPER_UPNP_H(?![A-Za-z0-9_])/TOR_TOR_FW_HELPER_UPNP_H/g; ==============================
This commit is contained in:
parent
d7b79bf020
commit
0cb921f3e9
@ -8,8 +8,8 @@
|
||||
* \brief Headers for address.h
|
||||
**/
|
||||
|
||||
#ifndef _TOR_ADDRESS_H
|
||||
#define _TOR_ADDRESS_H
|
||||
#ifndef TOR_ADDRESS_H
|
||||
#define TOR_ADDRESS_H
|
||||
|
||||
#include "orconfig.h"
|
||||
#include "torint.h"
|
||||
|
@ -5,8 +5,8 @@
|
||||
|
||||
/* Implements a minimal interface to counter-mode AES. */
|
||||
|
||||
#ifndef _TOR_AES_H
|
||||
#define _TOR_AES_H
|
||||
#ifndef TOR_AES_H
|
||||
#define TOR_AES_H
|
||||
|
||||
/**
|
||||
* \file aes.h
|
||||
|
@ -3,8 +3,8 @@
|
||||
* Copyright (c) 2007-2012, The Tor Project, Inc. */
|
||||
/* See LICENSE for licensing information */
|
||||
|
||||
#ifndef _TOR_COMPAT_H
|
||||
#define _TOR_COMPAT_H
|
||||
#ifndef TOR_COMPAT_H
|
||||
#define TOR_COMPAT_H
|
||||
|
||||
#include "orconfig.h"
|
||||
#include "torint.h"
|
||||
|
@ -1,8 +1,8 @@
|
||||
/* Copyright (c) 2009-2012, The Tor Project, Inc. */
|
||||
/* See LICENSE for licensing information */
|
||||
|
||||
#ifndef _TOR_COMPAT_LIBEVENT_H
|
||||
#define _TOR_COMPAT_LIBEVENT_H
|
||||
#ifndef TOR_COMPAT_LIBEVENT_H
|
||||
#define TOR_COMPAT_LIBEVENT_H
|
||||
|
||||
#include "orconfig.h"
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
* Copyright (c) 2007-2012, The Tor Project, Inc. */
|
||||
/* See LICENSE for licensing information */
|
||||
|
||||
#ifndef _TOR_CONTAINER_H
|
||||
#define _TOR_CONTAINER_H
|
||||
#ifndef TOR_CONTAINER_H
|
||||
#define TOR_CONTAINER_H
|
||||
|
||||
#include "util.h"
|
||||
|
||||
|
@ -10,8 +10,8 @@
|
||||
* \brief Headers for crypto.c
|
||||
**/
|
||||
|
||||
#ifndef _TOR_CRYPTO_H
|
||||
#define _TOR_CRYPTO_H
|
||||
#ifndef TOR_CRYPTO_H
|
||||
#define TOR_CRYPTO_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include "torint.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
/* See LICENSE for licensing information */
|
||||
/* Tor dependencies */
|
||||
|
||||
#ifndef _TOR_MEMAREA_H
|
||||
#define _TOR_MEMAREA_H
|
||||
#ifndef TOR_MEMAREA_H
|
||||
#define TOR_MEMAREA_H
|
||||
|
||||
typedef struct memarea_t memarea_t;
|
||||
|
||||
|
@ -6,8 +6,8 @@
|
||||
* \brief Headers for mempool.c
|
||||
**/
|
||||
|
||||
#ifndef _TOR_MEMPOOL_H
|
||||
#define _TOR_MEMPOOL_H
|
||||
#ifndef TOR_MEMPOOL_H
|
||||
#define TOR_MEMPOOL_H
|
||||
|
||||
/** A memory pool is a context in which a large number of fixed-sized
|
||||
* objects can be allocated efficiently. See mempool.c for implementation
|
||||
|
@ -8,8 +8,8 @@
|
||||
* \brief Headers for torgzip.h
|
||||
**/
|
||||
|
||||
#ifndef _TOR_TORGZIP_H
|
||||
#define _TOR_TORGZIP_H
|
||||
#ifndef TOR_TORGZIP_H
|
||||
#define TOR_TORGZIP_H
|
||||
|
||||
/** Enumeration of what kind of compression to use. Only ZLIB_METHOD is
|
||||
* guaranteed to be supported by the compress/uncompress functions here;
|
||||
|
@ -8,8 +8,8 @@
|
||||
* \brief Header file to define uint32_t and friends
|
||||
**/
|
||||
|
||||
#ifndef _TOR_TORINT_H
|
||||
#define _TOR_TORINT_H
|
||||
#ifndef TOR_TORINT_H
|
||||
#define TOR_TORINT_H
|
||||
|
||||
#include "orconfig.h"
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
* \brief Headers for log.c
|
||||
**/
|
||||
|
||||
#ifndef _TOR_LOG_H
|
||||
#ifndef TOR_TORLOG_H
|
||||
|
||||
#include "compat.h"
|
||||
|
||||
@ -213,6 +213,6 @@ extern const char *_log_fn_function_name;
|
||||
|
||||
#endif /* !GNUC */
|
||||
|
||||
# define _TOR_LOG_H
|
||||
# define TOR_TORLOG_H
|
||||
#endif
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
* Copyright (c) 2007-2012, The Tor Project, Inc. */
|
||||
/* See LICENSE for licensing information */
|
||||
|
||||
#ifndef _TOR_TORTLS_H
|
||||
#define _TOR_TORTLS_H
|
||||
#ifndef TOR_TORTLS_H
|
||||
#define TOR_TORTLS_H
|
||||
|
||||
/**
|
||||
* \file tortls.h
|
||||
|
@ -8,8 +8,8 @@
|
||||
* \brief Headers for util.c
|
||||
**/
|
||||
|
||||
#ifndef _TOR_UTIL_H
|
||||
#define _TOR_UTIL_H
|
||||
#ifndef TOR_UTIL_H
|
||||
#define TOR_UTIL_H
|
||||
|
||||
#include "orconfig.h"
|
||||
#include "torint.h"
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for buffers.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_BUFFERS_H
|
||||
#define _TOR_BUFFERS_H
|
||||
#ifndef TOR_BUFFERS_H
|
||||
#define TOR_BUFFERS_H
|
||||
|
||||
buf_t *buf_new(void);
|
||||
buf_t *buf_new_with_capacity(size_t size);
|
||||
|
@ -6,8 +6,8 @@
|
||||
* \brief Header file for channel.c
|
||||
**/
|
||||
|
||||
#ifndef _TOR_CHANNEL_H
|
||||
#define _TOR_CHANNEL_H
|
||||
#ifndef TOR_CHANNEL_H
|
||||
#define TOR_CHANNEL_H
|
||||
|
||||
#include "or.h"
|
||||
#include "circuitmux.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
* \brief Header file for channeltls.c
|
||||
**/
|
||||
|
||||
#ifndef _TOR_CHANNEL_TLS_H
|
||||
#define _TOR_CHANNEL_TLS_H
|
||||
#ifndef TOR_CHANNELTLS_H
|
||||
#define TOR_CHANNELTLS_H
|
||||
|
||||
#include "or.h"
|
||||
#include "channel.h"
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for circuitbuild.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_CIRCUITBUILD_H
|
||||
#define _TOR_CIRCUITBUILD_H
|
||||
#ifndef TOR_CIRCUITBUILD_H
|
||||
#define TOR_CIRCUITBUILD_H
|
||||
|
||||
char *circuit_list_path(origin_circuit_t *circ, int verbose);
|
||||
char *circuit_list_path_for_controller(origin_circuit_t *circ);
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for circuitlist.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_CIRCUITLIST_H
|
||||
#define _TOR_CIRCUITLIST_H
|
||||
#ifndef TOR_CIRCUITLIST_H
|
||||
#define TOR_CIRCUITLIST_H
|
||||
|
||||
circuit_t * _circuit_get_global_list(void);
|
||||
const char *circuit_state_to_string(int state);
|
||||
|
@ -6,8 +6,8 @@
|
||||
* \brief Header file for circuitmux.c
|
||||
**/
|
||||
|
||||
#ifndef _TOR_CIRCUITMUX_H
|
||||
#define _TOR_CIRCUITMUX_H
|
||||
#ifndef TOR_CIRCUITMUX_H
|
||||
#define TOR_CIRCUITMUX_H
|
||||
|
||||
#include "or.h"
|
||||
|
||||
@ -132,5 +132,5 @@ void circuitmux_clear_num_cells(circuitmux_t *cmux, circuit_t *circ);
|
||||
void circuitmux_set_num_cells(circuitmux_t *cmux, circuit_t *circ,
|
||||
unsigned int n_cells);
|
||||
|
||||
#endif /* _TOR_CIRCUITMUX_H */
|
||||
#endif /* TOR_CIRCUITMUX_H */
|
||||
|
||||
|
@ -6,8 +6,8 @@
|
||||
* \brief Header file for circuitmux_ewma.c
|
||||
**/
|
||||
|
||||
#ifndef _TOR_CIRCUITMUX_EWMA_H
|
||||
#define _TOR_CIRCUITMUX_EWMA_H
|
||||
#ifndef TOR_CIRCUITMUX_EWMA_H
|
||||
#define TOR_CIRCUITMUX_EWMA_H
|
||||
|
||||
#include "or.h"
|
||||
#include "circuitmux.h"
|
||||
@ -25,5 +25,5 @@ unsigned int cell_ewma_get_tick(void);
|
||||
void cell_ewma_set_scale_factor(const or_options_t *options,
|
||||
const networkstatus_t *consensus);
|
||||
|
||||
#endif /* _TOR_CIRCUITMUX_EWMA_H */
|
||||
#endif /* TOR_CIRCUITMUX_EWMA_H */
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for circuituse.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_CIRCUITUSE_H
|
||||
#define _TOR_CIRCUITUSE_H
|
||||
#ifndef TOR_CIRCUITUSE_H
|
||||
#define TOR_CIRCUITUSE_H
|
||||
|
||||
void circuit_expire_building(void);
|
||||
void circuit_remove_handled_ports(smartlist_t *needed_ports);
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for command.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_COMMAND_H
|
||||
#define _TOR_COMMAND_H
|
||||
#ifndef TOR_COMMAND_H
|
||||
#define TOR_COMMAND_H
|
||||
|
||||
#include "channel.h"
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for config.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_CONFIG_H
|
||||
#define _TOR_CONFIG_H
|
||||
#ifndef TOR_CONFIG_H
|
||||
#define TOR_CONFIG_H
|
||||
|
||||
const char *get_dirportfrontpage(void);
|
||||
const or_options_t *get_options(void);
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for connection.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_CONNECTION_H
|
||||
#define _TOR_CONNECTION_H
|
||||
#ifndef TOR_CONNECTION_H
|
||||
#define TOR_CONNECTION_H
|
||||
|
||||
/* XXXX For buf_datalen in inline function */
|
||||
#include "buffers.h"
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for connection_edge.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_CONNECTION_EDGE_H
|
||||
#define _TOR_CONNECTION_EDGE_H
|
||||
#ifndef TOR_CONNECTION_EDGE_H
|
||||
#define TOR_CONNECTION_EDGE_H
|
||||
|
||||
#define connection_mark_unattached_ap(conn, endreason) \
|
||||
_connection_mark_unattached_ap((conn), (endreason), __LINE__, _SHORT_FILE_)
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for connection_or.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_CONNECTION_OR_H
|
||||
#define _TOR_CONNECTION_OR_H
|
||||
#ifndef TOR_CONNECTION_OR_H
|
||||
#define TOR_CONNECTION_OR_H
|
||||
|
||||
void connection_or_remove_from_identity_map(or_connection_t *conn);
|
||||
void connection_or_clear_identity_map(void);
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for control.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_CONTROL_H
|
||||
#define _TOR_CONTROL_H
|
||||
#ifndef TOR_CONTROL_H
|
||||
#define TOR_CONTROL_H
|
||||
|
||||
void control_update_global_event_mask(void);
|
||||
void control_adjust_event_log_severity(void);
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for cpuworker.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_CPUWORKER_H
|
||||
#define _TOR_CPUWORKER_H
|
||||
#ifndef TOR_CPUWORKER_H
|
||||
#define TOR_CPUWORKER_H
|
||||
|
||||
void cpu_init(void);
|
||||
void cpuworkers_rotate(void);
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for directory.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_DIRECTORY_H
|
||||
#define _TOR_DIRECTORY_H
|
||||
#ifndef TOR_DIRECTORY_H
|
||||
#define TOR_DIRECTORY_H
|
||||
|
||||
int directories_have_accepted_server_descriptor(void);
|
||||
void directory_post_to_dirservers(uint8_t dir_purpose, uint8_t router_purpose,
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for dirserv.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_DIRSERV_H
|
||||
#define _TOR_DIRSERV_H
|
||||
#ifndef TOR_DIRSERV_H
|
||||
#define TOR_DIRSERV_H
|
||||
|
||||
/** What fraction (1 over this number) of the relay ID space do we
|
||||
* (as a directory authority) launch connections to at each reachability
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for dirvote.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_DIRVOTE_H
|
||||
#define _TOR_DIRVOTE_H
|
||||
#ifndef TOR_DIRVOTE_H
|
||||
#define TOR_DIRVOTE_H
|
||||
|
||||
/** Lowest allowable value for VoteSeconds. */
|
||||
#define MIN_VOTE_SECONDS 20
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for dns.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_DNS_H
|
||||
#define _TOR_DNS_H
|
||||
#ifndef TOR_DNS_H
|
||||
#define TOR_DNS_H
|
||||
|
||||
int dns_init(void);
|
||||
int has_dns_init_failed(void);
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for dnsserv.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_DNSSERV_H
|
||||
#define _TOR_DNSSERV_H
|
||||
#ifndef TOR_DNSSERV_H
|
||||
#define TOR_DNSSERV_H
|
||||
|
||||
void dnsserv_configure_listener(connection_t *conn);
|
||||
void dnsserv_close_listener(connection_t *conn);
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for geoip.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_GEOIP_H
|
||||
#define _TOR_GEOIP_H
|
||||
#ifndef TOR_GEOIP_H
|
||||
#define TOR_GEOIP_H
|
||||
|
||||
#ifdef GEOIP_PRIVATE
|
||||
int geoip_parse_entry(const char *line);
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for hibernate.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_HIBERNATE_H
|
||||
#define _TOR_HIBERNATE_H
|
||||
#ifndef TOR_HIBERNATE_H
|
||||
#define TOR_HIBERNATE_H
|
||||
|
||||
int accounting_parse_options(const or_options_t *options, int validate_only);
|
||||
int accounting_is_enabled(const or_options_t *options);
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for main.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_MAIN_H
|
||||
#define _TOR_MAIN_H
|
||||
#ifndef TOR_MAIN_H
|
||||
#define TOR_MAIN_H
|
||||
|
||||
extern int can_complete_circuit;
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for microdesc.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_MICRODESC_H
|
||||
#define _TOR_MICRODESC_H
|
||||
#ifndef TOR_MICRODESC_H
|
||||
#define TOR_MICRODESC_H
|
||||
|
||||
microdesc_cache_t *get_microdesc_cache(void);
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for networkstatus.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_NETWORKSTATUS_H
|
||||
#define _TOR_NETWORKSTATUS_H
|
||||
#ifndef TOR_NETWORKSTATUS_H
|
||||
#define TOR_NETWORKSTATUS_H
|
||||
|
||||
/** How old do we allow a v2 network-status to get before removing it
|
||||
* completely? */
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for nodelist.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_NODELIST_H
|
||||
#define _TOR_NODELIST_H
|
||||
#ifndef TOR_NODELIST_H
|
||||
#define TOR_NODELIST_H
|
||||
|
||||
#define node_assert_ok(n) STMT_BEGIN { \
|
||||
tor_assert((n)->ri || (n)->rs); \
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for ntmain.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_NTMAIN_H
|
||||
#define _TOR_NTMAIN_H
|
||||
#ifndef TOR_NTMAIN_H
|
||||
#define TOR_NTMAIN_H
|
||||
|
||||
#ifdef _WIN32
|
||||
#if !defined (WINCE)
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for onion.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_ONION_H
|
||||
#define _TOR_ONION_H
|
||||
#ifndef TOR_ONION_H
|
||||
#define TOR_ONION_H
|
||||
|
||||
int onion_pending_add(or_circuit_t *circ, char *onionskin);
|
||||
or_circuit_t *onion_next_task(char **onionskin_out);
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Master header file for Tor-specific functionality.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_OR_H
|
||||
#define _TOR_OR_H
|
||||
#ifndef TOR_OR_H
|
||||
#define TOR_OR_H
|
||||
|
||||
#include "orconfig.h"
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for policies.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_POLICIES_H
|
||||
#define _TOR_POLICIES_H
|
||||
#ifndef TOR_POLICIES_H
|
||||
#define TOR_POLICIES_H
|
||||
|
||||
/* (length of "accept 255.255.255.255/255.255.255.255:65535-65535\n" plus a
|
||||
* NUL.)
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for reasons.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_REASONS_H
|
||||
#define _TOR_REASONS_H
|
||||
#ifndef TOR_REASONS_H
|
||||
#define TOR_REASONS_H
|
||||
|
||||
const char *stream_end_reason_to_control_string(int reason);
|
||||
const char *stream_end_reason_to_string(int reason);
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for relay.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_RELAY_H
|
||||
#define _TOR_RELAY_H
|
||||
#ifndef TOR_RELAY_H
|
||||
#define TOR_RELAY_H
|
||||
|
||||
extern uint64_t stats_n_relay_cells_relayed;
|
||||
extern uint64_t stats_n_relay_cells_delivered;
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for rendclient.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_RENDCLIENT_H
|
||||
#define _TOR_RENDCLIENT_H
|
||||
#ifndef TOR_RENDCLIENT_H
|
||||
#define TOR_RENDCLIENT_H
|
||||
|
||||
void rend_client_purge_state(void);
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for rendcommon.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_RENDCOMMON_H
|
||||
#define _TOR_RENDCOMMON_H
|
||||
#ifndef TOR_RENDCOMMON_H
|
||||
#define TOR_RENDCOMMON_H
|
||||
|
||||
/** Free all storage associated with <b>data</b> */
|
||||
static INLINE void
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for rendmid.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_RENDMID_H
|
||||
#define _TOR_RENDMID_H
|
||||
#ifndef TOR_RENDMID_H
|
||||
#define TOR_RENDMID_H
|
||||
|
||||
int rend_mid_establish_intro(or_circuit_t *circ, const uint8_t *request,
|
||||
size_t request_len);
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for rendservice.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_RENDSERVICE_H
|
||||
#define _TOR_RENDSERVICE_H
|
||||
#ifndef TOR_RENDSERVICE_H
|
||||
#define TOR_RENDSERVICE_H
|
||||
|
||||
#include "or.h"
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for rephist.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_REPHIST_H
|
||||
#define _TOR_REPHIST_H
|
||||
#ifndef TOR_REPHIST_H
|
||||
#define TOR_REPHIST_H
|
||||
|
||||
void rep_hist_init(void);
|
||||
void rep_hist_note_connect_failed(const char* nickname, time_t when);
|
||||
|
@ -6,8 +6,8 @@
|
||||
* \brief Header file for replaycache.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_REPLAYCACHE_H
|
||||
#define _TOR_REPLAYCACHE_H
|
||||
#ifndef TOR_REPLAYCACHE_H
|
||||
#define TOR_REPLAYCACHE_H
|
||||
|
||||
typedef struct replaycache_s replaycache_t;
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for router.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_ROUTER_H
|
||||
#define _TOR_ROUTER_H
|
||||
#ifndef TOR_ROUTER_H
|
||||
#define TOR_ROUTER_H
|
||||
|
||||
crypto_pk_t *get_onion_key(void);
|
||||
time_t get_onion_key_set_at(void);
|
||||
|
@ -8,8 +8,8 @@
|
||||
* \brief Header file for routerlist.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_ROUTERLIST_H
|
||||
#define _TOR_ROUTERLIST_H
|
||||
#ifndef TOR_ROUTERLIST_H
|
||||
#define TOR_ROUTERLIST_H
|
||||
|
||||
int get_n_authorities(dirinfo_type_t type);
|
||||
int trusted_dirs_reload_certs(void);
|
||||
|
@ -9,8 +9,8 @@
|
||||
* \brief Header file for routerparse.c.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_ROUTERPARSE_H
|
||||
#define _TOR_ROUTERPARSE_H
|
||||
#ifndef TOR_ROUTERPARSE_H
|
||||
#define TOR_ROUTERPARSE_H
|
||||
|
||||
int router_get_router_hash(const char *s, size_t s_len, char *digest);
|
||||
int router_get_dir_hash(const char *s, char *digest);
|
||||
|
@ -1,8 +1,8 @@
|
||||
/* Copyright (c) 2010-2012, The Tor Project, Inc. */
|
||||
/* See LICENSE for licensing information */
|
||||
|
||||
#ifndef _TOR_STATUS_H
|
||||
#define _TOR_STATUS_H
|
||||
#ifndef TOR_STATUS_H
|
||||
#define TOR_STATUS_H
|
||||
|
||||
int log_heartbeat(time_t now);
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
* Copyright (c) 2007-2012, The Tor Project, Inc. */
|
||||
/* See LICENSE for licensing information */
|
||||
|
||||
#ifndef _TOR_TEST_H
|
||||
#define _TOR_TEST_H
|
||||
#ifndef TOR_TEST_H
|
||||
#define TOR_TEST_H
|
||||
|
||||
/**
|
||||
* \file test.h
|
||||
|
@ -7,8 +7,8 @@
|
||||
**/
|
||||
|
||||
#ifdef NAT_PMP
|
||||
#ifndef _TOR_FW_HELPER_NATPMP_H
|
||||
#define _TOR_FW_HELPER_NATPMP_H
|
||||
#ifndef TOR_TOR_FW_HELPER_NATPMP_H
|
||||
#define TOR_TOR_FW_HELPER_NATPMP_H
|
||||
|
||||
#include <natpmp.h>
|
||||
|
||||
|
@ -8,8 +8,8 @@
|
||||
**/
|
||||
|
||||
#ifdef MINIUPNPC
|
||||
#ifndef _TOR_FW_HELPER_UPNP_H
|
||||
#define _TOR_FW_HELPER_UPNP_H
|
||||
#ifndef TOR_TOR_FW_HELPER_UPNP_H
|
||||
#define TOR_TOR_FW_HELPER_UPNP_H
|
||||
|
||||
#include <miniupnpc/miniwget.h>
|
||||
#include <miniupnpc/miniupnpc.h>
|
||||
|
@ -7,8 +7,8 @@
|
||||
* \brief The main header for our firewall helper.
|
||||
**/
|
||||
|
||||
#ifndef _TOR_FW_HELPER_H
|
||||
#define _TOR_FW_HELPER_H
|
||||
#ifndef TOR_TOR_FW_HELPER_H
|
||||
#define TOR_TOR_FW_HELPER_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
|
Loading…
Reference in New Issue
Block a user