I2CP added

This commit is contained in:
orignal 2016-05-12 15:37:46 -04:00
parent c49fdf1233
commit 67f1e07508
6 changed files with 40 additions and 2 deletions

21
I2CP.h Normal file
View file

@ -0,0 +1,21 @@
#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