mirror of https://github.com/PurpleI2P/i2pd.git
orignal
9 years ago
6 changed files with 40 additions and 2 deletions
@ -0,0 +1,13 @@
@@ -0,0 +1,13 @@
|
||||
#include "I2CP.h" |
||||
|
||||
|
||||
namespace i2p |
||||
{ |
||||
namespace client |
||||
{ |
||||
I2CPServer::I2CPServer (const std::string& interface, int port) |
||||
{ |
||||
} |
||||
} |
||||
} |
||||
|
@ -0,0 +1,21 @@
@@ -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 |
||||
|
Loading…
Reference in new issue