diff options
author | rfree2monero <rfreemonero@op.pl> | 2015-04-08 19:54:07 +0200 |
---|---|---|
committer | rfree2monero <rfreemonero@op.pl> | 2015-04-08 19:54:07 +0200 |
commit | 9bfa593eee5a528c70dfaed39feb140a7b10e8b5 (patch) | |
tree | b12e477bbc9e39cf633fde935cf7e8595ae3a4ac /src/p2p/connection_basic.hpp | |
parent | updated unbound cmake for static builds (diff) | |
download | monero-9bfa593eee5a528c70dfaed39feb140a7b10e8b5.tar.xz |
[fix] Network 1.8: unlimited the RPC connections
works for unit tests build, too
Diffstat (limited to 'src/p2p/connection_basic.hpp')
-rw-r--r-- | src/p2p/connection_basic.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/p2p/connection_basic.hpp b/src/p2p/connection_basic.hpp index e9fdc3add..d8101afe4 100644 --- a/src/p2p/connection_basic.hpp +++ b/src/p2p/connection_basic.hpp @@ -75,6 +75,14 @@ namespace net_utils class connection_basic_pimpl; // PIMPL for this class + enum t_connection_type { // type of the connection (of this server), e.g. so that we will know how to limit it + e_connection_type_NET = 0, // default (not used?) + e_connection_type_RPC = 1, // the rpc commands (probably not rate limited, not chunked, etc) + e_connection_type_P2P = 2 // to other p2p node (probably limited) + }; + + std::string to_string(t_connection_type type); + class connection_basic { // not-templated base class for rapid developmet of some code parts public: std::unique_ptr< connection_basic_pimpl > mI; // my Implementation |