mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-09 16:02:46 +08:00
Made all arch sockets non-blocking.
This commit is contained in:
@@ -435,10 +435,10 @@ CArch::acceptSocket(CArchSocket s, CArchNetAddress* addr)
|
||||
return m_net->acceptSocket(s, addr);
|
||||
}
|
||||
|
||||
void
|
||||
bool
|
||||
CArch::connectSocket(CArchSocket s, CArchNetAddress name)
|
||||
{
|
||||
m_net->connectSocket(s, name);
|
||||
return m_net->connectSocket(s, name);
|
||||
}
|
||||
|
||||
int
|
||||
@@ -471,12 +471,6 @@ CArch::throwErrorOnSocket(CArchSocket s)
|
||||
m_net->throwErrorOnSocket(s);
|
||||
}
|
||||
|
||||
bool
|
||||
CArch::setBlockingOnSocket(CArchSocket s, bool blocking)
|
||||
{
|
||||
return m_net->setBlockingOnSocket(s, blocking);
|
||||
}
|
||||
|
||||
bool
|
||||
CArch::setNoDelayOnSocket(CArchSocket s, bool noDelay)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user