mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
564 B
37 lines
564 B
11 years ago
|
#ifndef SSU_H__
|
||
|
#define SSU_H__
|
||
|
|
||
|
#include <inttypes.h>
|
||
|
#include <boost/asio.hpp>
|
||
|
|
||
|
namespace i2p
|
||
|
{
|
||
|
namespace ssu
|
||
|
{
|
||
|
const int SSU_MTU = 1484;
|
||
|
|
||
|
class SSUServer
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
SSUServer (boost::asio::io_service& service, int port);
|
||
|
void Start ();
|
||
|
void Stop ();
|
||
|
|
||
|
private:
|
||
|
|
||
|
void Receive ();
|
||
|
void HandleReceivedFrom (const boost::system::error_code& ecode, std::size_t bytes_transferred);
|
||
|
|
||
|
private:
|
||
|
|
||
|
boost::asio::ip::udp::socket m_Socket;
|
||
|
boost::asio::ip::udp::endpoint m_SenderEndpoint;
|
||
|
uint8_t m_ReceiveBuffer[SSU_MTU];
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|