diff options
author | Riccardo Spagni <ric@spagni.net> | 2019-01-16 19:04:22 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2019-01-16 19:04:22 +0200 |
commit | 846362842c9893cdbbea1dd1f00931c50bb2df5e (patch) | |
tree | c7e91557c2349a3cbeb23053950de96185428595 /contrib/epee/include/net/levin_client.h | |
parent | Merge pull request #4973 (diff) | |
parent | epee: better network buffer data structure (diff) | |
download | monero-846362842c9893cdbbea1dd1f00931c50bb2df5e.tar.xz |
Merge pull request #4976
85665003 epee: better network buffer data structure (moneromooo-monero)
Diffstat (limited to 'contrib/epee/include/net/levin_client.h')
-rw-r--r-- | contrib/epee/include/net/levin_client.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/epee/include/net/levin_client.h b/contrib/epee/include/net/levin_client.h index 335f6ba02..76d528234 100644 --- a/contrib/epee/include/net/levin_client.h +++ b/contrib/epee/include/net/levin_client.h @@ -57,7 +57,7 @@ namespace levin bool is_connected(); bool disconnect(); - virtual int invoke(int command, const std::string& in_buff, std::string& buff_out); + virtual int invoke(int command, const epee::span<const uint8_t> in_buff, std::string& buff_out); virtual int notify(int command, const std::string& in_buff); protected: @@ -72,7 +72,7 @@ namespace levin { public: - int invoke(int command, const std::string& in_buff, std::string& buff_out); + int invoke(int command, const epee::span<const uint8_t> in_buff, std::string& buff_out); int notify(int command, const std::string& in_buff); }; |