aboutsummaryrefslogtreecommitdiff
path: root/src/feature/relay/ext_orport.h
AgeCommit message (Collapse)Author
2022-07-26relay: Remove unused conn->ext_or_conn_idDavid Goulet
This also incidently removes a use of uninitialized stack data from the connection_or_set_ext_or_identifier() function. Fixes #40648 Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-03-12Update copyrights to 2021, using "make update-copyright"Nick Mathewson
2020-11-12Remove orconn_ext_or_id_map and related functionsNeel Chauhan
2020-02-19Note module-local functions in ext_orport.hNick Mathewson
Since these are only used inside the feature/relay module, they don't need stubs.
2020-02-19Make connection_or_get_by_ext_or_id() testing-onlyNick Mathewson
Apparently it is only used by the unit tests: tor doesn't want it at all. I've opened a new ticket (33383) to we if we should remove this whole feature.
2020-02-18Make ext_orport.c relay-mode-only.Nick Mathewson
2020-02-18Move some declarations into proto_ext_or.hNick Mathewson
They are for functions declared in that file.
2020-01-08It's 2020. Update the copyright dates with "make update-copyright"Nick Mathewson
2019-10-26doxygen: add @file declarations for src/feature/Nick Mathewson
If a file doesn't use the file command (either \file or @file), Doxygen won't try to process it.
2019-01-16Bump copyright date to 2019Nick Mathewson
2018-07-05Move literally everything out of src/orNick Mathewson
This commit won't build yet -- it just puts everything in a slightly more logical place. The reasoning here is that "src/core" will hold the stuff that every (or nearly every) tor instance will need in order to do onion routing. Other features (including some necessary ones) will live in "src/feature". The "src/app" directory will hold the stuff needed to have Tor be an application you can actually run. This commit DOES NOT refactor the former contents of src/or into a logical set of acyclic libraries, or change any code at all. That will have to come in the future. We will continue to move things around and split them in the future, but I hope this lays a reasonable groundwork for doing so.