mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-04 04:11:06 -05:00
fff40eceac
There are many significant improvements to the DHT here. See commit logs on v0.5-peernet branch for details. This is not the final merge, but brings over the majority of expected v0.5-peernet/libbitdht changes git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4354 b45a01b8-16f6-495d-af2f-9b41ad6348cc
80 lines
1.9 KiB
C++
80 lines
1.9 KiB
C++
#ifndef BITDHT_ACCOUNT_H
|
|
#define BITDHT_ACCOUNT_H
|
|
|
|
/*
|
|
* bitdht/bdaccount.h
|
|
*
|
|
* BitDHT: An Flexible DHT library.
|
|
*
|
|
* Copyright 2011 by Robert Fernie
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License Version 3 as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
* USA.
|
|
*
|
|
* Please report all bugs and problems to "bitdht@lunamutt.com".
|
|
*
|
|
*/
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <inttypes.h>
|
|
|
|
#define BDACCOUNT_MSG_OUTOFDATEPING 0
|
|
#define BDACCOUNT_MSG_PING 1
|
|
#define BDACCOUNT_MSG_PONG 2
|
|
#define BDACCOUNT_MSG_QUERYNODE 3
|
|
#define BDACCOUNT_MSG_QUERYHASH 4
|
|
#define BDACCOUNT_MSG_REPLYFINDNODE 5
|
|
#define BDACCOUNT_MSG_REPLYQUERYHASH 6
|
|
|
|
#define BDACCOUNT_MSG_POSTHASH 7
|
|
#define BDACCOUNT_MSG_REPLYPOSTHASH 8
|
|
|
|
#define BDACCOUNT_MSG_CONNECTREQUEST 9
|
|
#define BDACCOUNT_MSG_CONNECTREPLY 10
|
|
#define BDACCOUNT_MSG_CONNECTSTART 11
|
|
#define BDACCOUNT_MSG_CONNECTACK 12
|
|
|
|
#define BDACCOUNT_NUM_ENTRIES 13
|
|
|
|
class bdAccount
|
|
{
|
|
public:
|
|
|
|
bdAccount();
|
|
|
|
void incCounter(uint32_t idx, bool out);
|
|
void doStats();
|
|
void printStats(std::ostream &out);
|
|
void resetCounters();
|
|
void resetStats();
|
|
|
|
private:
|
|
|
|
int mNoStats;
|
|
|
|
std::vector<double> mCountersOut;
|
|
std::vector<double> mCountersRecv;
|
|
|
|
std::vector<double> mLpfOut;
|
|
std::vector<double> mLpfRecv;
|
|
|
|
std::vector<std::string> mLabel;
|
|
// Statistics.
|
|
};
|
|
|
|
|
|
|
|
#endif // BITDHT_ACCOUNT_H
|