Vidalia
0.2.21
|
#include <AddressMap.h>
Public Types | |
enum | AddressMapType { AddressMapAll, AddressMapConfig, AddressMapCache, AddressMapControl } |
Public Member Functions | |
AddressMap () | |
void | add (const QString &from, const QString &to, const QDateTime &expires) |
void | add (const QString &mapping) |
bool | isMapped (const QString &addr) const |
QString | mappedTo (const QString &addr) const |
AddressMap | reverse () const |
Private Member Functions | |
bool | isExpired (const AddressMapEntry &entry) const |
Definition at line 28 of file AddressMap.h.
Types of address mappings.
AddressMapAll |
All address mapping types. |
AddressMapConfig |
Address mappings set in the torrc. |
AddressMapCache |
Address mappings cached by Tor. |
AddressMapControl |
Address mappings set by a controller. |
Definition at line 32 of file AddressMap.h.
|
inline |
Constructor. Creates an empty table for storing address mappinsgs.
Definition at line 40 of file AddressMap.h.
void AddressMap::add | ( | const QString & | from, |
const QString & | to, | ||
const QDateTime & | expires | ||
) |
Adds a new address mapping or updates an existing one for the address specified by from. The mapping will remain valid until the date in expires.
Adds a new address mapping from the address from to the address to, that expires at expires.
Definition at line 29 of file AddressMap.cpp.
References tc::DebugMessage::arg(), DATE_FMT, and tc::debug().
Referenced by add(), NetViewer::addressMapped(), TorControl::getAddressMap(), and reverse().
void AddressMap::add | ( | const QString & | mapping | ) |
Adds a new address mapping or updates an existing one based on fields parsed from mapping.
Adds a new address mapping by parsing the fields in mapping, which should be formatted as follows:
Address SP Address SP Expiry Expiry = DQUOTE ISOTime DQUOTE / "NEVER"
Definition at line 46 of file AddressMap.cpp.
|
private |
Returns true if entry is expired; false otherwise.
Definition at line 66 of file AddressMap.cpp.
Referenced by isMapped(), and mappedTo().
bool AddressMap::isMapped | ( | const QString & | addr | ) | const |
Returns true if the address map table contains a mapping for addr that is not expired.
Returns true if there exists a mapping for addr and that mapping is not expired.
Definition at line 76 of file AddressMap.cpp.
References isExpired().
Referenced by NetViewer::addStream().
QString AddressMap::mappedTo | ( | const QString & | addr | ) | const |
Returns the address to which addr is currently mapped. If there is no mapping for addr (or the mapping is expired), then an empty string is returned.
Definition at line 85 of file AddressMap.cpp.
References isExpired().
Referenced by NetViewer::addStream().
AddressMap AddressMap::reverse | ( | ) | const |
Returns the reverse of this address map.
Returns the reverse of this address map by swapping each address in the address map with its mapped address. The expiration times are unaltered.
Definition at line 94 of file AddressMap.cpp.
References add().
Referenced by NetViewer::loadAddressMap().