i2pd/I2CP.h

22 lines
221 B
C
Raw Normal View History

2016-05-12 21:37:46 +02:00
#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