#include "connection_edge.h"
#include "connection_or.h"
#include "control.h"
+#include "reasons.h"
#include "../common/util.h"
#include "../common/torlog.h"
#ifdef HAVE_UNISTD_H
#include "geoip.h"
#include "main.h"
#include "policies.h"
+#include "reasons.h"
#include "rendclient.h"
#include "rendcommon.h"
#include "router.h"
#include "hibernate.h"
#include "main.h"
#include "policies.h"
+#include "reasons.h"
#include "rendclient.h"
#include "rendcommon.h"
#include "rendservice.h"
#include "geoip.h"
#include "main.h"
#include "networkstatus.h"
+#include "reasons.h"
#include "router.h"
#include "routerlist.h"
#include "main.h"
#include "networkstatus.h"
#include "policies.h"
+#include "reasons.h"
#include "router.h"
#include "routerlist.h"
ADDR_POLICY_PROBABLY_REJECTED=2
} addr_policy_result_t;
-/********************************* reasons.c ***************************/
-
-const char *stream_end_reason_to_control_string(int reason);
-const char *stream_end_reason_to_string(int reason);
-socks5_reply_status_t stream_end_reason_to_socks5_response(int reason);
-uint8_t errno_to_stream_end_reason(int e);
-
-const char *orconn_end_reason_to_control_string(int r);
-int tls_error_to_orconn_end_reason(int e);
-int errno_to_orconn_end_reason(int e);
-
-const char *circuit_end_reason_to_control_string(int reason);
-const char *socks4_response_code_to_string(uint8_t code);
-const char *socks5_response_code_to_string(uint8_t code);
-
/********************************* relay.c ***************************/
extern uint64_t stats_n_relay_cells_relayed;
#include "or.h"
#include "config.h"
+#include "reasons.h"
/***************************** Edge (stream) reasons **********************/
--- /dev/null
+/* Copyright (c) 2001 Matej Pfajfar.
+ * Copyright (c) 2001-2004, Roger Dingledine.
+ * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
+ * Copyright (c) 2007-2010, The Tor Project, Inc. */
+/* See LICENSE for licensing information */
+
+/**
+ * \file reasons.h
+ * \brief Header file for reasons.c
+ **/
+
+#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);
+socks5_reply_status_t stream_end_reason_to_socks5_response(int reason);
+uint8_t errno_to_stream_end_reason(int e);
+
+const char *orconn_end_reason_to_control_string(int r);
+int tls_error_to_orconn_end_reason(int e);
+int errno_to_orconn_end_reason(int e);
+
+const char *circuit_end_reason_to_control_string(int reason);
+const char *socks4_response_code_to_string(uint8_t code);
+const char *socks5_response_code_to_string(uint8_t code);
+
+#endif
+
#include "mempool.h"
#include "networkstatus.h"
#include "policies.h"
+#include "reasons.h"
#include "rendcommon.h"
#include "routerlist.h"