mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 13:27:17 +01: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
|
||
|
|