mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 08:00:38 +03:00
22 lines
221 B
C++
22 lines
221 B
C++
#ifndef I2CP_H__
|
|
#define I2CP_H__
|
|
|
|
#include <string>
|
|
#include <boost/asio.hpp>
|
|
|
|
namespace i2p
|
|
{
|
|
namespace client
|
|
{
|
|
class I2CPServer
|
|
{
|
|
public:
|
|
|
|
I2CPServer (const std::string& interface, int port);
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|