diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-12-21 10:57:45 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-12-21 10:57:45 -0500 |
commit | 1eeb505e6f08591c39e0a000efab3948ef1ef5b5 (patch) | |
tree | d1a8c5f88468576294fd4aa8194a9262d96475b8 /src/or/or.h | |
parent | b8a3602b2a7114f2027d4a3af27520b109762efd (diff) | |
download | tor-1eeb505e6f08591c39e0a000efab3948ef1ef5b5.tar.gz tor-1eeb505e6f08591c39e0a000efab3948ef1ef5b5.zip |
In 0.3.3, we use timestamps, not absolute milliseconds.
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/or.h b/src/or/or.h index 99cf15289e..2617d2d87d 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1182,7 +1182,8 @@ typedef struct cell_queue_t { typedef struct destroy_cell_t { TOR_SIMPLEQ_ENTRY(destroy_cell_t) next; circid_t circid; - uint32_t inserted_time; /** Timestamp when this was queued. */ + uint32_t inserted_timestamp; /**< Time (in timestamp units) when this cell + * was inserted */ uint8_t reason; } destroy_cell_t; |