From fbff749838cb31c4060daffc367a9d24b394b8fa Mon Sep 17 00:00:00 2001 From: orignal Date: Sat, 6 Dec 2014 16:06:46 -0500 Subject: [PATCH] pass BOB options to destination --- BOB.cpp | 1 + BOB.h | 1 + 2 files changed, 2 insertions(+) diff --git a/BOB.cpp b/BOB.cpp index ff053b25..1687d198 100644 --- a/BOB.cpp +++ b/BOB.cpp @@ -192,6 +192,7 @@ namespace client std::placeholders::_1, std::placeholders::_2)); } + void BOBCommandSession::HandleReceived (const boost::system::error_code& ecode, std::size_t bytes_transferred) { if (ecode) diff --git a/BOB.h b/BOB.h index 95a4a906..d0fa1cc1 100644 --- a/BOB.h +++ b/BOB.h @@ -162,6 +162,7 @@ namespace client int m_Port; i2p::data::PrivateKeys m_Keys; std::map m_Options; + }; typedef void (BOBCommandSession::*BOBCommandHandler)(const char * operand, size_t len);