diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-02-15 20:19:53 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-02-15 20:19:53 -0500 |
commit | 3d7bf98d13ffc090e5ba1b918f53668018690dce (patch) | |
tree | 82908c4a835bc9559996fe068466441e5dc78112 /src/or/or.h | |
parent | 3c8a481599cf9c84530db1f304731b5f2ec9caef (diff) | |
parent | 7884ce76e100abc220ddedb76c9b98d22d66d645 (diff) | |
download | tor-3d7bf98d13ffc090e5ba1b918f53668018690dce.tar.gz tor-3d7bf98d13ffc090e5ba1b918f53668018690dce.zip |
Merge remote-tracking branch 'valentecaio/t-24714'
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/or.h b/src/or/or.h index 03efdd1d81..f5a5f2579b 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1361,10 +1361,10 @@ typedef struct connection_t { * connection. */ size_t outbuf_flushlen; /**< How much data should we try to flush from the * outbuf? */ - time_t timestamp_lastread; /**< When was the last time libevent said we could - * read? */ - time_t timestamp_lastwritten; /**< When was the last time libevent said we - * could write? */ + time_t timestamp_last_read_allowed; /**< When was the last time libevent said + * we could read? */ + time_t timestamp_last_write_allowed; /**< When was the last time libevent + * said we could write? */ time_t timestamp_created; /**< When was this connection_t created? */ |