aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/versions.h
AgeCommit message (Collapse)Author
2020-01-08It's 2020. Update the copyright dates with "make update-copyright"Nick Mathewson
2019-01-16Bump copyright date to 2019Nick Mathewson
2018-11-24No longer exit for missing required protocolversions on an old consensusNick Mathewson
Specifically, if the consensus is older than the (estimted or measured) release date for this version of tor, we assume that the required versions may have changed in between that consensus and this release. Implements ticket 27735 and proposal 297.
2018-11-07Memoize summarize_protover_flags()Nick Mathewson
Our tests showed that this function is responsible for a huge number of our malloc/free() calls. It's a prime candidate for being memoized. Closes ticket 27225.
2018-10-01Move summarize_protover_flags to versions.cNick Mathewson
2018-10-01Extract the version-managing code from routerparse.cNick Mathewson
Leave the versions.h include in routerparse.h for now; I'll remove it later.