diff options
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h index a9f120866..8fb3b45dd 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -603,9 +603,10 @@ typedef struct { char *signing_router; } routerlist_t; -/* DOCDOC */ +/** Contents of a running-routers list */ typedef struct running_routers_t { - time_t published_on; + time_t published_on; /**< When was the list marked as published? */ + /** Which ORs are on the list? Entries may be prefixed with ! and $. */ smartlist_t *running_routers; } running_routers_t; |