Add "Heartbeat" to the start of several heartbeat messages.
[tor.git] / src / core / or / listener_connection_st.h
blob5cc3fa2afd88453c3a6ec449cee808ab04c18d1a
1 /* Copyright (c) 2001 Matej Pfajfar.
2 * Copyright (c) 2001-2004, Roger Dingledine.
3 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
4 * Copyright (c) 2007-2021, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
7 /**
8 * @file listener_connection_st.h
9 * @brief Listener connection structure.
10 **/
12 #ifndef LISTENER_CONNECTION_ST_H
13 #define LISTENER_CONNECTION_ST_H
15 #include "core/or/connection_st.h"
17 /** Subtype of connection_t; used for a listener socket. */
18 struct listener_connection_t {
19 connection_t base_;
21 /** If the connection is a CONN_TYPE_AP_DNS_LISTENER, this field points
22 * to the evdns_server_port it uses to listen to and answer connections. */
23 struct evdns_server_port *dns_server_port;
25 entry_port_cfg_t entry_cfg;
29 #endif /* !defined(LISTENER_CONNECTION_ST_H) */