1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 04:04:16 +00:00

Detect null stream on I2PConnect

This commit is contained in:
Francisco Blas (klondike) Izquierdo Riera 2015-01-06 23:51:10 +01:00
parent 2fca028161
commit 634718d6b4

View File

@ -1,3 +1,4 @@
#include <cassert>
#include "base64.h"
#include "Log.h"
#include "Destination.h"
@ -36,10 +37,13 @@ namespace client
void I2PTunnelConnection::I2PConnect (const uint8_t * msg, size_t len)
{
if (msg)
m_Stream->Send (msg, len); // connect and send
else
m_Stream->Send (m_Buffer, 0); // connect
if (m_Stream)
{
if (msg)
m_Stream->Send (msg, len); // connect and send
else
m_Stream->Send (m_Buffer, 0); // connect
}
StreamReceive ();
Receive ();
}