i2pd/libi2pd/Streaming.h

406 lines
15 KiB
C
Raw Normal View History

/*
* Copyright (c) 2013-2024, The PurpleI2P Project
*
* This file is part of Purple i2pd project and licensed under BSD3
*
* See full license text in LICENSE file at top of project tree
*/
2013-12-13 06:36:24 +04:00
#ifndef STREAMING_H__
#define STREAMING_H__
#include <inttypes.h>
2014-03-20 00:38:55 +04:00
#include <string>
2021-06-30 02:08:11 +03:00
#include <unordered_map>
#include <set>
2014-04-12 05:13:52 +04:00
#include <queue>
2014-08-05 00:30:37 +04:00
#include <functional>
2014-11-23 19:33:58 +03:00
#include <memory>
2015-01-26 00:18:26 +03:00
#include <mutex>
2014-03-24 00:00:05 +04:00
#include <boost/asio.hpp>
2015-11-03 17:15:49 +03:00
#include "Base.h"
#include "I2PEndian.h"
2013-12-31 05:46:33 +04:00
#include "Identity.h"
2014-01-02 03:19:03 +04:00
#include "LeaseSet.h"
#include "I2NPProtocol.h"
2014-08-30 06:10:00 +04:00
#include "Garlic.h"
2014-10-07 04:18:18 +04:00
#include "Tunnel.h"
2017-01-11 05:31:52 +03:00
#include "util.h" // MemoryPool
2013-12-13 06:36:24 +04:00
namespace i2p
{
namespace client
{
2016-05-25 23:18:02 +03:00
class ClientDestination;
}
2013-12-13 06:36:24 +04:00
namespace stream
{
const uint16_t PACKET_FLAG_SYNCHRONIZE = 0x0001;
const uint16_t PACKET_FLAG_CLOSE = 0x0002;
const uint16_t PACKET_FLAG_RESET = 0x0004;
const uint16_t PACKET_FLAG_SIGNATURE_INCLUDED = 0x0008;
const uint16_t PACKET_FLAG_SIGNATURE_REQUESTED = 0x0010;
const uint16_t PACKET_FLAG_FROM_INCLUDED = 0x0020;
const uint16_t PACKET_FLAG_DELAY_REQUESTED = 0x0040;
const uint16_t PACKET_FLAG_MAX_PACKET_SIZE_INCLUDED = 0x0080;
const uint16_t PACKET_FLAG_PROFILE_INTERACTIVE = 0x0100;
const uint16_t PACKET_FLAG_ECHO = 0x0200;
const uint16_t PACKET_FLAG_NO_ACK = 0x0400;
2019-02-05 23:32:18 +03:00
const uint16_t PACKET_FLAG_OFFLINE_SIGNATURE = 0x0800;
2013-12-13 06:36:24 +04:00
2014-01-13 00:57:10 +04:00
const size_t STREAMING_MTU = 1730;
const size_t STREAMING_MTU_RATCHETS = 1812;
2014-08-07 03:19:59 +04:00
const size_t MAX_PACKET_SIZE = 4096;
2018-01-06 06:48:51 +03:00
const size_t COMPRESSION_THRESHOLD_SIZE = 66;
2024-06-29 16:17:11 +03:00
const int MAX_NUM_RESEND_ATTEMPTS = 10;
const int INITIAL_WINDOW_SIZE = 10;
2015-01-29 23:34:43 +03:00
const int MIN_WINDOW_SIZE = 1;
const int MAX_WINDOW_SIZE = 1024;
const double RTT_EWMA_ALPHA = 0.125;
2024-03-19 07:37:21 +03:00
const int MIN_RTO = 20; // in milliseconds
2015-01-29 23:34:43 +03:00
const int INITIAL_RTT = 8000; // in milliseconds
2015-03-10 18:11:42 +03:00
const int INITIAL_RTO = 9000; // in milliseconds
2024-06-29 16:17:11 +03:00
const int INITIAL_PACING_TIME = 1000 * INITIAL_RTT / INITIAL_WINDOW_SIZE; // in microseconds
2021-12-06 01:54:34 +03:00
const int MIN_SEND_ACK_TIMEOUT = 2; // in milliseconds
const int SYN_TIMEOUT = 200; // how long we wait for SYN after follow-on, in milliseconds
const size_t MAX_PENDING_INCOMING_BACKLOG = 1024;
const int PENDING_INCOMING_TIMEOUT = 10; // in seconds
const int MAX_RECEIVE_TIMEOUT = 20; // in seconds
const uint16_t DELAY_CHOKING = 60000; // in milliseconds
const uint64_t SEND_INTERVAL = 1000; // in microseconds
2016-07-28 18:16:29 +03:00
2014-01-11 05:21:38 +04:00
struct Packet
{
size_t len, offset;
2018-01-06 06:48:51 +03:00
uint8_t buf[MAX_PACKET_SIZE];
2015-02-03 21:46:44 +03:00
uint64_t sendTime;
bool resent;
2018-01-06 06:48:51 +03:00
Packet (): len (0), offset (0), sendTime (0), resent (false) {};
2014-01-11 05:21:38 +04:00
uint8_t * GetBuffer () { return buf + offset; };
2024-08-14 20:43:24 +03:00
size_t GetLength () const { return len > offset ? len - offset : 0; };
uint32_t GetSendStreamID () const { return bufbe32toh (buf); };
uint32_t GetReceiveStreamID () const { return bufbe32toh (buf + 4); };
uint32_t GetSeqn () const { return bufbe32toh (buf + 8); };
uint32_t GetAckThrough () const { return bufbe32toh (buf + 12); };
2014-01-30 08:13:59 +04:00
uint8_t GetNACKCount () const { return buf[16]; };
uint32_t GetNACK (int i) const { return bufbe32toh (buf + 17 + 4 * i); };
2023-03-11 16:44:07 +03:00
const uint8_t * GetNACKs () const { return buf + 17; };
2014-01-30 08:13:59 +04:00
const uint8_t * GetOption () const { return buf + 17 + GetNACKCount ()*4 + 3; }; // 3 = resendDelay + flags
uint16_t GetFlags () const { return bufbe16toh (GetOption () - 2); };
uint16_t GetOptionSize () const { return bufbe16toh (GetOption ()); };
2014-01-30 08:13:59 +04:00
const uint8_t * GetOptionData () const { return GetOption () + 2; };
const uint8_t * GetPayload () const { return GetOptionData () + GetOptionSize (); };
2014-08-06 23:44:00 +04:00
bool IsSYN () const { return GetFlags () & PACKET_FLAG_SYNCHRONIZE; };
2014-08-11 02:27:23 +04:00
bool IsNoAck () const { return GetFlags () & PACKET_FLAG_NO_ACK; };
2020-10-01 00:12:28 +03:00
bool IsEcho () const { return GetFlags () & PACKET_FLAG_ECHO; };
2018-01-06 06:48:51 +03:00
};
struct PacketCmp
{
bool operator() (const Packet * p1, const Packet * p2) const
2018-01-06 07:01:44 +03:00
{
2018-01-06 06:48:51 +03:00
return p1->GetSeqn () < p2->GetSeqn ();
};
2018-01-06 06:48:51 +03:00
};
2015-03-09 02:36:33 +03:00
typedef std::function<void (const boost::system::error_code& ecode)> SendHandler;
struct SendBuffer
{
uint8_t * buf;
size_t len, offset;
SendHandler handler;
SendBuffer (const uint8_t * b, size_t l, SendHandler h):
len(l), offset (0), handler(h)
{
buf = new uint8_t[len];
memcpy (buf, b, len);
2018-01-06 06:48:51 +03:00
}
2021-11-12 19:33:51 +03:00
SendBuffer (size_t l): // create empty buffer
len(l), offset (0)
{
buf = new uint8_t[len];
}
~SendBuffer ()
{
delete[] buf;
if (handler) handler(boost::system::error_code ());
2018-01-06 06:48:51 +03:00
}
size_t GetRemainingSize () const { return len - offset; };
2018-01-06 06:48:51 +03:00
const uint8_t * GetRemaningBuffer () const { return buf + offset; };
void Cancel () { if (handler) handler (boost::asio::error::make_error_code (boost::asio::error::operation_aborted)); handler = nullptr; };
2018-01-06 06:48:51 +03:00
};
class SendBufferQueue
{
public:
SendBufferQueue (): m_Size (0) {};
~SendBufferQueue () { CleanUp (); };
void Add (std::shared_ptr<SendBuffer> buf);
2018-01-06 06:48:51 +03:00
size_t Get (uint8_t * buf, size_t len);
size_t GetSize () const { return m_Size; };
bool IsEmpty () const { return m_Buffers.empty (); };
void CleanUp ();
2018-01-06 06:48:51 +03:00
private:
std::list<std::shared_ptr<SendBuffer> > m_Buffers;
size_t m_Size;
2018-01-06 06:48:51 +03:00
};
2015-03-09 02:36:33 +03:00
enum StreamStatus
{
eStreamStatusNew = 0,
2015-03-09 02:36:33 +03:00
eStreamStatusOpen,
eStreamStatusReset,
eStreamStatusClosing,
eStreamStatusClosed,
eStreamStatusTerminated
2018-01-06 06:48:51 +03:00
};
2013-12-31 05:46:33 +04:00
class StreamingDestination;
2014-11-23 19:33:58 +03:00
class Stream: public std::enable_shared_from_this<Stream>
2018-01-06 06:48:51 +03:00
{
public:
2018-01-06 06:48:51 +03:00
Stream (boost::asio::io_service& service, StreamingDestination& local,
2015-01-27 19:27:58 +03:00
std::shared_ptr<const i2p::data::LeaseSet> remote, int port = 0); // outgoing
2018-01-06 06:48:51 +03:00
Stream (boost::asio::io_service& service, StreamingDestination& local); // incoming
2014-08-01 22:54:14 +04:00
2014-01-11 05:21:38 +04:00
~Stream ();
uint32_t GetSendStreamID () const { return m_SendStreamID; };
uint32_t GetRecvStreamID () const { return m_RecvStreamID; };
2015-01-27 19:27:58 +03:00
std::shared_ptr<const i2p::data::LeaseSet> GetRemoteLeaseSet () const { return m_RemoteLeaseSet; };
2015-11-03 17:15:49 +03:00
std::shared_ptr<const i2p::data::IdentityEx> GetRemoteIdentity () const { return m_RemoteIdentity; };
bool IsOpen () const { return m_Status == eStreamStatusOpen; };
2014-01-10 07:26:30 +04:00
bool IsEstablished () const { return m_SendStreamID; };
StreamStatus GetStatus () const { return m_Status; };
2014-10-07 18:44:42 +04:00
StreamingDestination& GetLocalDestination () { return m_LocalDestination; };
void ResetRoutingPath ();
2018-01-06 06:48:51 +03:00
2014-01-11 05:21:38 +04:00
void HandleNextPacket (Packet * packet);
2020-10-01 00:12:28 +03:00
void HandlePing (Packet * packet);
2014-10-02 05:18:41 +04:00
size_t Send (const uint8_t * buf, size_t len);
2015-04-09 22:07:25 +03:00
void AsyncSend (const uint8_t * buf, size_t len, SendHandler handler);
2021-09-26 18:20:20 +03:00
void SendPing ();
2014-03-25 22:26:39 +04:00
template<typename Buffer, typename ReceiveHandler>
void AsyncReceive (const Buffer& buffer, ReceiveHandler handler, int timeout = 0);
size_t ReadSome (uint8_t * buf, size_t len) { return ConcatenatePackets (buf, len); };
2022-11-09 02:34:59 +03:00
size_t Receive (uint8_t * buf, size_t len, int timeout);
2018-04-25 18:27:56 +03:00
void AsyncClose() { m_Service.post(std::bind(&Stream::Close, shared_from_this())); };
2018-04-24 16:45:16 +03:00
2018-04-25 18:27:56 +03:00
/** only call close from destination thread, use Stream::AsyncClose for other threads */
2014-01-13 00:57:10 +04:00
void Close ();
2014-12-17 23:31:13 +03:00
void Cancel () { m_ReceiveTimer.cancel (); };
2014-10-14 01:03:27 +04:00
size_t GetNumSentBytes () const { return m_NumSentBytes; };
size_t GetNumReceivedBytes () const { return m_NumReceivedBytes; };
2014-10-18 23:50:34 +04:00
size_t GetSendQueueSize () const { return m_SentPackets.size (); };
size_t GetReceiveQueueSize () const { return m_ReceiveQueue.size (); };
size_t GetSendBufferSize () const { return m_SendBuffer.GetSize (); };
2015-02-03 21:46:44 +03:00
int GetWindowSize () const { return m_WindowSize; };
int GetRTT () const { return m_RTT; };
2014-01-11 07:23:17 +04:00
void Terminate (bool deleteFromDestination = true);
2018-01-06 06:48:51 +03:00
2016-07-28 22:34:32 +03:00
private:
2015-03-09 19:06:35 +03:00
2017-01-23 05:22:12 +03:00
void CleanUp ();
2018-01-06 06:48:51 +03:00
2015-01-26 00:18:26 +03:00
void SendBuffer ();
2014-08-08 06:03:25 +04:00
void SendQuickAck ();
void SendClose ();
2014-03-25 03:27:20 +04:00
bool SendPacket (Packet * packet);
2014-08-13 00:35:35 +04:00
void SendPackets (const std::vector<Packet *>& packets);
void SendUpdatedLeaseSet ();
void SavePacket (Packet * packet);
2014-02-02 07:20:41 +04:00
void ProcessPacket (Packet * packet);
2019-02-05 23:32:18 +03:00
bool ProcessOptions (uint16_t flags, Packet * packet);
2014-08-11 02:27:23 +04:00
void ProcessAck (Packet * packet);
2014-03-26 23:06:27 +04:00
size_t ConcatenatePackets (uint8_t * buf, size_t len);
2014-03-23 17:25:16 +04:00
void UpdateCurrentRemoteLease (bool expired = false);
2018-01-06 06:48:51 +03:00
2014-03-25 22:26:39 +04:00
template<typename Buffer, typename ReceiveHandler>
void HandleReceiveTimer (const boost::system::error_code& ecode, const Buffer& buffer, ReceiveHandler handler, int remainingTimeout);
2018-01-06 06:48:51 +03:00
2024-06-29 16:17:11 +03:00
void ScheduleSend ();
void HandleSendTimer (const boost::system::error_code& ecode);
2014-08-11 02:27:23 +04:00
void ScheduleResend ();
void HandleResendTimer (const boost::system::error_code& ecode);
2024-06-29 16:17:11 +03:00
void ResendPacket ();
void ScheduleAck (int timeout);
2014-10-10 19:53:27 +04:00
void HandleAckSendTimer (const boost::system::error_code& ecode);
2018-01-06 06:48:51 +03:00
2024-07-04 20:07:57 +03:00
void UpdatePacingTime ();
private:
2014-03-24 00:00:05 +04:00
boost::asio::io_service& m_Service;
2014-08-07 03:19:59 +04:00
uint32_t m_SendStreamID, m_RecvStreamID, m_SequenceNumber;
uint32_t m_TunnelsChangeSequenceNumber;
2014-08-07 03:19:59 +04:00
int32_t m_LastReceivedSequenceNumber;
2024-06-29 16:17:11 +03:00
int32_t m_PreviousReceivedSequenceNumber;
2024-08-18 00:11:28 +03:00
int32_t m_LastConfirmedReceivedSequenceNumber; // for limit inbound speed
2015-03-09 02:36:33 +03:00
StreamStatus m_Status;
bool m_IsAckSendScheduled;
2024-06-29 16:17:11 +03:00
bool m_IsNAcked;
bool m_IsFirstACK;
bool m_IsResendNeeded;
bool m_IsFirstRttSample;
2024-07-04 20:07:57 +03:00
bool m_IsSendTime;
2024-06-29 16:17:11 +03:00
bool m_IsWinDropped;
bool m_IsTimeOutResend;
2014-10-07 18:44:42 +04:00
StreamingDestination& m_LocalDestination;
2015-11-03 17:15:49 +03:00
std::shared_ptr<const i2p::data::IdentityEx> m_RemoteIdentity;
2019-02-06 21:36:03 +03:00
std::shared_ptr<const i2p::crypto::Verifier> m_TransientVerifier; // in case of offline key
2015-01-27 19:27:58 +03:00
std::shared_ptr<const i2p::data::LeaseSet> m_RemoteLeaseSet;
2015-01-22 23:31:34 +03:00
std::shared_ptr<i2p::garlic::GarlicRoutingSession> m_RoutingSession;
2016-02-11 06:51:08 +03:00
std::shared_ptr<const i2p::data::Lease> m_CurrentRemoteLease;
2015-01-27 22:55:46 +03:00
std::shared_ptr<i2p::tunnel::OutboundTunnel> m_CurrentOutboundTunnel;
2014-04-12 05:13:52 +04:00
std::queue<Packet *> m_ReceiveQueue;
std::set<Packet *, PacketCmp> m_SavedPackets;
2014-08-11 02:27:23 +04:00
std::set<Packet *, PacketCmp> m_SentPackets;
2024-06-29 16:17:11 +03:00
boost::asio::deadline_timer m_ReceiveTimer, m_SendTimer, m_ResendTimer, m_AckSendTimer;
2014-10-14 01:03:27 +04:00
size_t m_NumSentBytes, m_NumReceivedBytes;
2014-10-23 05:36:11 +04:00
uint16_t m_Port;
2015-01-26 00:18:26 +03:00
SendBufferQueue m_SendBuffer;
double m_RTT, m_SlowRTT;
float m_WindowSize, m_LastWindowDropSize;
int m_WindowIncCounter, m_RTO, m_AckDelay, m_PrevRTTSample, m_PrevRTT, m_Jitter;
uint64_t m_MinPacingTime, m_PacingTime, m_PacingTimeRem, m_DropWindowDelayTime, m_LastSendTime; // microseconds
2024-08-18 00:11:28 +03:00
uint64_t m_LastACKSendTime, m_PacketACKInterval, m_PacketACKIntervalRem; // for limit inbound speed
int m_NumResendAttempts, m_NumPacketsToSend, m_NumPacketsToResend;
size_t m_MTU;
};
2014-03-25 22:26:39 +04:00
2016-02-08 22:42:20 +03:00
class StreamingDestination: public std::enable_shared_from_this<StreamingDestination>
{
public:
2014-11-23 19:33:58 +03:00
typedef std::function<void (std::shared_ptr<Stream>)> Acceptor;
2014-11-18 17:33:58 +03:00
StreamingDestination (std::shared_ptr<i2p::client::ClientDestination> owner, uint16_t localPort = 0, bool gzip = false);
2018-01-06 06:48:51 +03:00
~StreamingDestination ();
void Start ();
void Stop ();
2015-01-27 19:27:58 +03:00
std::shared_ptr<Stream> CreateNewOutgoingStream (std::shared_ptr<const i2p::data::LeaseSet> remote, int port = 0);
2021-09-26 18:20:20 +03:00
void SendPing (std::shared_ptr<const i2p::data::LeaseSet> remote);
2018-01-06 06:48:51 +03:00
void DeleteStream (std::shared_ptr<Stream> stream);
2020-03-04 23:54:09 +03:00
bool DeleteStream (uint32_t recvStreamID);
void SetAcceptor (const Acceptor& acceptor);
void ResetAcceptor ();
2018-01-06 06:48:51 +03:00
bool IsAcceptorSet () const { return m_Acceptor != nullptr; };
void AcceptOnce (const Acceptor& acceptor);
void AcceptOnceAcceptor (std::shared_ptr<Stream> stream, Acceptor acceptor, Acceptor prev);
2022-11-11 21:31:54 +03:00
std::shared_ptr<Stream> AcceptStream (int timeout = 0); // sync
2016-05-25 23:18:02 +03:00
std::shared_ptr<i2p::client::ClientDestination> GetOwner () const { return m_Owner; };
2016-11-26 06:36:35 +03:00
void SetOwner (std::shared_ptr<i2p::client::ClientDestination> owner) { m_Owner = owner; };
2015-03-02 05:08:34 +03:00
uint16_t GetLocalPort () const { return m_LocalPort; };
void HandleDataMessagePayload (const uint8_t * buf, size_t len);
2022-10-25 02:21:58 +03:00
std::shared_ptr<I2NPMessage> CreateDataMessage (const uint8_t * payload, size_t len, uint16_t toPort, bool checksum = true, bool gzip = false);
2018-01-20 21:06:08 +03:00
Packet * NewPacket () { return m_PacketsPool.Acquire(); }
void DeletePacket (Packet * p) { return m_PacketsPool.Release(p); }
2018-01-06 06:48:51 +03:00
private:
void HandleNextPacket (Packet * packet);
std::shared_ptr<Stream> CreateNewIncomingStream (uint32_t receiveStreamID);
void HandlePendingIncomingTimer (const boost::system::error_code& ecode);
private:
2016-05-25 23:18:02 +03:00
std::shared_ptr<i2p::client::ClientDestination> m_Owner;
2015-03-02 05:08:34 +03:00
uint16_t m_LocalPort;
bool m_Gzip; // gzip compression of data messages
std::mutex m_StreamsMutex;
2021-06-30 02:08:11 +03:00
std::unordered_map<uint32_t, std::shared_ptr<Stream> > m_Streams; // sendStreamID->stream
std::unordered_map<uint32_t, std::shared_ptr<Stream> > m_IncomingStreams; // receiveStreamID->stream
std::shared_ptr<Stream> m_LastStream;
2014-11-18 17:33:58 +03:00
Acceptor m_Acceptor;
std::list<std::shared_ptr<Stream> > m_PendingIncomingStreams;
boost::asio::deadline_timer m_PendingIncomingTimer;
2021-06-30 02:08:11 +03:00
std::unordered_map<uint32_t, std::list<Packet *> > m_SavedPackets; // receiveStreamID->packets, arrived before SYN
2018-01-06 06:48:51 +03:00
2018-01-20 21:06:08 +03:00
i2p::util::MemoryPool<Packet> m_PacketsPool;
2023-03-27 05:12:43 +03:00
i2p::util::MemoryPool<I2NPMessageBuffer<I2NP_MAX_SHORT_MESSAGE_SIZE> > m_I2NPMsgsPool;
2018-01-06 06:48:51 +03:00
public:
2015-11-03 17:15:49 +03:00
i2p::data::GzipInflator m_Inflator;
2022-10-25 02:21:58 +03:00
i2p::data::GzipDeflator m_Deflator;
2018-01-06 06:48:51 +03:00
// for HTTP only
const decltype(m_Streams)& GetStreams () const { return m_Streams; };
2018-01-06 06:48:51 +03:00
};
2014-03-25 22:26:39 +04:00
//-------------------------------------------------
template<typename Buffer, typename ReceiveHandler>
void Stream::AsyncReceive (const Buffer& buffer, ReceiveHandler handler, int timeout)
{
2015-04-02 22:10:02 +03:00
auto s = shared_from_this();
2018-01-15 16:19:57 +03:00
m_Service.post ([s, buffer, handler, timeout](void)
2014-03-27 23:56:13 +04:00
{
2018-01-01 16:28:42 +03:00
if (!s->m_ReceiveQueue.empty () || s->m_Status == eStreamStatusReset)
s->HandleReceiveTimer (boost::asio::error::make_error_code (boost::asio::error::operation_aborted), buffer, handler, 0);
2015-04-02 22:10:02 +03:00
else
{
2018-01-15 16:19:57 +03:00
int t = (timeout > MAX_RECEIVE_TIMEOUT) ? MAX_RECEIVE_TIMEOUT : timeout;
s->m_ReceiveTimer.expires_from_now (boost::posix_time::seconds(t));
2018-01-15 16:19:57 +03:00
int left = timeout - t;
2022-11-09 02:34:59 +03:00
s->m_ReceiveTimer.async_wait (
[s, buffer, handler, left](const boost::system::error_code & ec)
2018-01-15 16:19:57 +03:00
{
2022-11-09 02:34:59 +03:00
s->HandleReceiveTimer(ec, buffer, handler, left);
2018-01-15 16:19:57 +03:00
});
2015-04-02 22:10:02 +03:00
}
2018-01-06 06:48:51 +03:00
});
2014-03-25 22:26:39 +04:00
}
template<typename Buffer, typename ReceiveHandler>
void Stream::HandleReceiveTimer (const boost::system::error_code& ecode, const Buffer& buffer, ReceiveHandler handler, int remainingTimeout)
2014-03-25 22:26:39 +04:00
{
2014-03-26 23:06:27 +04:00
size_t received = ConcatenatePackets (boost::asio::buffer_cast<uint8_t *>(buffer), boost::asio::buffer_size(buffer));
if (received > 0)
handler (boost::system::error_code (), received);
else if (ecode == boost::asio::error::operation_aborted)
2018-01-06 06:48:51 +03:00
{
// timeout not expired
if (m_Status == eStreamStatusReset)
handler (boost::asio::error::make_error_code (boost::asio::error::connection_reset), 0);
else
2018-01-06 06:48:51 +03:00
handler (boost::asio::error::make_error_code (boost::asio::error::operation_aborted), 0);
}
2014-03-25 22:26:39 +04:00
else
2018-01-06 06:48:51 +03:00
{
2014-03-25 22:26:39 +04:00
// timeout expired
if (remainingTimeout <= 0)
handler (boost::asio::error::make_error_code (boost::asio::error::timed_out), received);
else
2018-01-06 06:48:51 +03:00
{
2021-11-12 19:33:51 +03:00
// itermediate interrupt
SendUpdatedLeaseSet (); // send our leaseset if applicable
2018-01-06 06:48:51 +03:00
AsyncReceive (buffer, handler, remainingTimeout);
}
}
2014-03-25 22:26:39 +04:00
}
2018-01-06 06:48:51 +03:00
}
}
2013-12-13 06:36:24 +04:00
#endif