Rewrote DCC server to allow for multiple threads, also added DCC recv.
(DCC recv still broken, threading buggy)
This commit is contained in:
@@ -35,6 +35,12 @@ InetAddr::InetAddr(short wPort)
|
||||
port = wPort;
|
||||
}
|
||||
|
||||
InetAddr::InetAddr(long dwIP, short wPort)
|
||||
{
|
||||
host = dwIP;
|
||||
port = wPort;
|
||||
}
|
||||
|
||||
InetAddr::InetAddr(const char* lpszAddress, short wPort)
|
||||
{
|
||||
Resolve(lpszAddress, wPort);
|
||||
|
||||
Reference in New Issue
Block a user