Tabs -> spaces (yes this breaks compatiblity with upstream)

This commit is contained in:
EinMByte 2015-07-16 23:29:52 +02:00
parent 5d78e2f5e4
commit 4412dd198d
96 changed files with 22253 additions and 22254 deletions

22
UPnP.h
View file

@ -21,22 +21,22 @@ namespace i2p
{
namespace transport
{
class UPnP
{
public:
class UPnP
{
public:
UPnP ();
~UPnP ();
UPnP ();
~UPnP ();
void Close ();
void Start ();
void Stop ();
void Discover ();
void TryPortMapping (int type, int port);
void CloseMapping (int type, int port);
private:
void Run ();
void Discover ();
void TryPortMapping (int type, int port);
void CloseMapping (int type, int port);
private:
void Run ();
std::thread * m_Thread;
struct UPNPUrls m_upnpUrls;
@ -54,7 +54,7 @@ namespace transport
#else
HINSTANCE m_Module;
#endif
};
};
}
}