diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-15 10:37:33 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-15 10:37:33 -0400 |
commit | 6c0fe9d07c40ce453b5c9c7a60cbfd13bf3ca6d7 (patch) | |
tree | 31d5b8440b128ec1ec4d231e219fea1e2eb7c596 /src/or/connection.h | |
parent | 1416f54d1eb2651e6b82ccbe35585ce71378de8a (diff) | |
download | tor-6c0fe9d07c40ce453b5c9c7a60cbfd13bf3ca6d7.tar.gz tor-6c0fe9d07c40ce453b5c9c7a60cbfd13bf3ca6d7.zip |
Split listener_connection_t into its own header
For once, it's a type that is used almost nowhere else besides the
logical place.
Diffstat (limited to 'src/or/connection.h')
-rw-r--r-- | src/or/connection.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/connection.h b/src/or/connection.h index 59720ce3b8..df33882398 100644 --- a/src/or/connection.h +++ b/src/or/connection.h @@ -12,6 +12,8 @@ #ifndef TOR_CONNECTION_H #define TOR_CONNECTION_H +listener_connection_t *TO_LISTENER_CONN(connection_t *); + /* XXXX For buf_datalen in inline function */ #include "buffers.h" |