From 979575c311ea3391043a3e01a4fa11da15eceb4d Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Mon, 22 Aug 2016 13:59:51 -0400 Subject: [PATCH] fix --- I2PTunnel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/I2PTunnel.cpp b/I2PTunnel.cpp index 93aa1cd6..7172b23b 100644 --- a/I2PTunnel.cpp +++ b/I2PTunnel.cpp @@ -659,7 +659,7 @@ namespace client if(m_Session) { // tell session LogPrint(eLogDebug, "UDP Client: got ", len, "B from ", from.GetIdentHash().ToBase32(), " via ", m_Session->SendEndpoint); - m_Session->IPSocket.send_to(boost::asio::buffer(buf, len), m_Session->SendEndpoint); + m_Session->IPSocket.send_to(boost::asio::buffer(buf, len), m_Session->FromEndpoint); } else { LogPrint(eLogWarning, "UDP Client: no session"); }