listener_connection_st.h 665 B

1234567891011121314151617181920212223
  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-2017, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. #ifndef LISTENER_CONNECTION_ST_H
  7. #define LISTENER_CONNECTION_ST_H
  8. /** Subtype of connection_t; used for a listener socket. */
  9. struct listener_connection_t {
  10. connection_t base_;
  11. /** If the connection is a CONN_TYPE_AP_DNS_LISTENER, this field points
  12. * to the evdns_server_port it uses to listen to and answer connections. */
  13. struct evdns_server_port *dns_server_port;
  14. entry_port_cfg_t entry_cfg;
  15. };
  16. #endif