diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-09-27 20:46:24 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-09-27 20:46:24 +0000 |
commit | 60efd6b726728a1022e5845a711e640b08d7b93b (patch) | |
tree | 7ae169fc1b8bea34b6c07c7f7ca03e26dc0187c8 /src/or/or.h | |
parent | 5ba6fd9e7be10200c754d240d646177524f2bd7d (diff) | |
download | tor-60efd6b726728a1022e5845a711e640b08d7b93b.tar tor-60efd6b726728a1022e5845a711e640b08d7b93b.tar.gz |
r15420@catbus: nickm | 2007-09-27 15:40:25 -0400
Remove annotated_desc_store store (which we never used). Instead, shift name of router store to cached-descriptors, but initialize it from cached-routers as needed
svn:r11678
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h index c98ab14ad..c0853f903 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1379,6 +1379,7 @@ typedef enum store_type_t { /** DOCDOC */ typedef struct desc_store_t { const char *fname_base; + const char *fname_alt_base; const char *description; tor_mmap_t *mmap; @@ -1417,8 +1418,6 @@ typedef struct { * whose cache_info.saved_location == SAVED_IN_CACHE is stored in this file * starting at cache_info.saved_offset */ desc_store_t desc_store; - /** DOCDOC */ - desc_store_t annotated_desc_store; /** Mmaped file holding extra-info documents. */ desc_store_t extrainfo_store; } routerlist_t; |