i2pd/I2CP.h
2016-05-12 15:37:46 -04:00

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