Tor
0.4.7.0-alpha-dev
|
#include <or_state_st.h>
Data Fields | |
uint32_t | magic_ |
time_t | next_write |
time_t | LastWritten |
time_t | AccountingIntervalStart |
uint64_t | AccountingBytesReadInInterval |
uint64_t | AccountingBytesWrittenInInterval |
int | AccountingSecondsActive |
int | AccountingSecondsToReachSoftLimit |
time_t | AccountingSoftLimitHitAt |
uint64_t | AccountingBytesAtSoftLimit |
uint64_t | AccountingExpectedUsage |
struct config_line_t * | Guard |
struct config_line_t * | TransportProxies |
time_t | BWHistoryReadEnds |
int | BWHistoryReadInterval |
struct smartlist_t * | BWHistoryReadValues |
struct smartlist_t * | BWHistoryReadMaxima |
time_t | BWHistoryWriteEnds |
int | BWHistoryWriteInterval |
struct smartlist_t * | BWHistoryWriteValues |
struct smartlist_t * | BWHistoryWriteMaxima |
time_t | BWHistoryIPv6ReadEnds |
int | BWHistoryIPv6ReadInterval |
struct smartlist_t * | BWHistoryIPv6ReadValues |
struct smartlist_t * | BWHistoryIPv6ReadMaxima |
time_t | BWHistoryIPv6WriteEnds |
int | BWHistoryIPv6WriteInterval |
struct smartlist_t * | BWHistoryIPv6WriteValues |
struct smartlist_t * | BWHistoryIPv6WriteMaxima |
time_t | BWHistoryDirReadEnds |
int | BWHistoryDirReadInterval |
struct smartlist_t * | BWHistoryDirReadValues |
struct smartlist_t * | BWHistoryDirReadMaxima |
time_t | BWHistoryDirWriteEnds |
int | BWHistoryDirWriteInterval |
struct smartlist_t * | BWHistoryDirWriteValues |
struct smartlist_t * | BWHistoryDirWriteMaxima |
struct config_line_t * | BuildtimeHistogram |
int | TotalBuildTimes |
int | CircuitBuildAbandonedCount |
char * | TorVersion |
struct config_line_t * | ExtraLines |
time_t | LastRotatedOnionKey |
struct config_suite_t * | substates_ |
Persistent state for an onion router, as saved to disk.
Definition at line 21 of file or_state_st.h.
time_t AccountingIntervalStart |
Fields for accounting bandwidth use.
Definition at line 32 of file or_state_st.h.
Referenced by accounting_record_bandwidth_usage().
struct config_line_t* BuildtimeHistogram |
Build time histogram
Definition at line 80 of file or_state_st.h.
time_t BWHistoryReadEnds |
These fields hold information on the history of bandwidth usage for servers. The "Ends" fields hold the time when we last updated the bandwidth usage. The "Interval" fields hold the granularity, in seconds, of the entries of Values. The "Values" lists hold decimal string representations of the number of bytes read or written in each interval. The "Maxima" list holds decimal strings describing the highest rate achieved during the interval.
Definition at line 54 of file or_state_st.h.
struct config_line_t* ExtraLines |
Holds any unrecognized values we found in the state file, in the order in which we found them.
Definition at line 89 of file or_state_st.h.
struct config_line_t* Guard |
A list of guard-related configuration lines.
Definition at line 42 of file or_state_st.h.
Referenced by entry_guards_load_guards_from_state().
time_t LastRotatedOnionKey |
When did we last rotate our onion key? "0" for 'no idea'.
Definition at line 92 of file or_state_st.h.
time_t LastWritten |
When was the state last written to disk?
Definition at line 29 of file or_state_st.h.
time_t next_write |
The time at which we next plan to write the state to the disk. Equal to TIME_MAX if there are no saveable changes, 0 if there are changes that should be saved right away.
Definition at line 26 of file or_state_st.h.
Referenced by or_state_mark_dirty(), and save_state_callback().
struct config_suite_t* substates_ |
State objects for individual modules.
Never access this field or its members directly: instead, use the module in question to get its relevant state object if you must.
Definition at line 100 of file or_state_st.h.
char* TorVersion |
What version of Tor wrote this state file?
Definition at line 85 of file or_state_st.h.