Commit 7f8d9e8a authored by Nick Mathewson's avatar Nick Mathewson 🦀
Browse files

r9287@Kushana: nickm | 2006-10-19 19:28:31 -0400

 Weasel points out that a routerdesc requested by digest can never change.  Weasel is right.


svn:r8766
parent 974bdee1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -66,6 +66,7 @@ static void note_request(const char *key, size_t bytes);
#define RUNNINGROUTERS_CACHE_LIFETIME (20*60)
#define NETWORKSTATUS_CACHE_LIFETIME (5*60)
#define ROUTERDESC_CACHE_LIFETIME (30*60)
#define ROUTERDESC_BY_DIGEST_CACHE_LIFETIME (48*60*60)
#define ROBOTS_CACHE_LIFETIME (24*60*60)

/********* END VARIABLES ************/
@@ -1617,7 +1618,7 @@ directory_handle_command_get(dir_connection_t *conn, char *headers,
    } else if (!strcmpstart(url, "/tor/server/d/")) {
      request_type = deflated?"/tor/server/d.z":"/tor/server/d";
      if (smartlist_len(conn->fingerprint_stack) == 1)
        cache_lifetime = ROUTERDESC_CACHE_LIFETIME;
        cache_lifetime = ROUTERDESC_BY_DIGEST_CACHE_LIFETIME;
    } else {
      request_type = "/tor/server/?";
    }