Rewrote DCC server to allow for multiple threads, also added DCC recv.

(DCC recv still broken, threading buggy)
This commit is contained in:
Brendan Walker
2002-12-08 19:40:18 +00:00
parent fab23817c5
commit e731ee03ed
14 changed files with 1515 additions and 259 deletions
+6
View File
@@ -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);