.Web: Removed unimplemented Socket:Reuse

git-svn-id: svn://ultimatepp.org/upp/trunk@2360 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2010-05-03 19:56:59 +00:00
parent f3097876c5
commit 750db1cc03

View file

@ -28,7 +28,6 @@ public:
void NoDelay();
void Linger(int msecs);
void Block(bool b = true);
void Reuse();
// void WriteTimeout(int msecs);
// void ReadTimeout(int msecs);
void StopWrite();
@ -93,7 +92,6 @@ public:
void NoLinger() { data->Linger(Null); }
void Block(bool b = true) { data->Block(b); }
void NoBlock() { data->Block(false); }
void Reuse() { data->Reuse(); }
static bool Wait(const Vector<SOCKET>& read, const Vector<SOCKET>& write, int timeout_msec);
static bool Wait(const Vector<Socket *>& read, const Vector<Socket *>& write, int timeout_msec);