mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 21:37:17 +01:00
Detect null stream on I2PConnect
This commit is contained in:
parent
2fca028161
commit
634718d6b4
|
@ -1,3 +1,4 @@
|
||||||
|
#include <cassert>
|
||||||
#include "base64.h"
|
#include "base64.h"
|
||||||
#include "Log.h"
|
#include "Log.h"
|
||||||
#include "Destination.h"
|
#include "Destination.h"
|
||||||
|
@ -36,10 +37,13 @@ namespace client
|
||||||
|
|
||||||
void I2PTunnelConnection::I2PConnect (const uint8_t * msg, size_t len)
|
void I2PTunnelConnection::I2PConnect (const uint8_t * msg, size_t len)
|
||||||
{
|
{
|
||||||
if (msg)
|
if (m_Stream)
|
||||||
m_Stream->Send (msg, len); // connect and send
|
{
|
||||||
else
|
if (msg)
|
||||||
m_Stream->Send (m_Buffer, 0); // connect
|
m_Stream->Send (msg, len); // connect and send
|
||||||
|
else
|
||||||
|
m_Stream->Send (m_Buffer, 0); // connect
|
||||||
|
}
|
||||||
StreamReceive ();
|
StreamReceive ();
|
||||||
Receive ();
|
Receive ();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue