use Tag<32> for SSU key

This commit is contained in:
orignal 2014-09-17 20:43:47 -04:00
parent ef417eb8d9
commit 1742a72fe0
2 changed files with 5 additions and 5 deletions

View file

@ -61,7 +61,7 @@ namespace data
{
boost::asio::ip::address iHost;
int iPort;
uint8_t iKey[32];
Tag<32> iKey;
uint32_t iTag;
};
@ -73,7 +73,7 @@ namespace data
uint64_t date;
uint8_t cost;
// SSU only
uint8_t key[32]; // intro key for SSU
Tag<32> key; // intro key for SSU
std::vector<Introducer> introducers;
};