2014-03-03 23:07:58 +01:00
|
|
|
// Copyright (c) 2012-2013 The Cryptonote developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <unordered_set>
|
|
|
|
#include <atomic>
|
|
|
|
#include "net/net_utils_base.h"
|
2014-03-20 12:46:11 +01:00
|
|
|
#include "copyable_atomic.h"
|
2014-03-03 23:07:58 +01:00
|
|
|
|
|
|
|
namespace cryptonote
|
|
|
|
{
|
|
|
|
|
|
|
|
struct cryptonote_connection_context: public epee::net_utils::connection_context_base
|
|
|
|
{
|
|
|
|
|
|
|
|
enum state
|
|
|
|
{
|
|
|
|
state_befor_handshake = 0, //default state
|
|
|
|
state_synchronizing,
|
2014-03-20 12:46:11 +01:00
|
|
|
state_idle,
|
2014-03-03 23:07:58 +01:00
|
|
|
state_normal
|
|
|
|
};
|
|
|
|
|
|
|
|
state m_state;
|
|
|
|
std::list<crypto::hash> m_needed_objects;
|
|
|
|
std::unordered_set<crypto::hash> m_requested_objects;
|
|
|
|
uint64_t m_remote_blockchain_height;
|
|
|
|
uint64_t m_last_response_height;
|
2014-03-20 12:46:11 +01:00
|
|
|
epee::copyable_atomic m_callback_request_count; //in debug purpose: problem with double callback rise
|
2014-03-03 23:07:58 +01:00
|
|
|
//size_t m_score; TODO: add score calculations
|
|
|
|
};
|
2014-03-20 12:46:11 +01:00
|
|
|
|
|
|
|
inline std::string get_protocol_state_string(cryptonote_connection_context::state s)
|
|
|
|
{
|
|
|
|
switch (s)
|
|
|
|
{
|
|
|
|
case cryptonote_connection_context::state_befor_handshake:
|
|
|
|
return "state_befor_handshake";
|
|
|
|
case cryptonote_connection_context::state_synchronizing:
|
|
|
|
return "state_synchronizing";
|
|
|
|
case cryptonote_connection_context::state_idle:
|
|
|
|
return "state_idle";
|
|
|
|
case cryptonote_connection_context::state_normal:
|
|
|
|
return "state_normal";
|
|
|
|
default:
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-03 23:07:58 +01:00
|
|
|
}
|