From 750db1cc031a56cee25ea08d52510269dd293630 Mon Sep 17 00:00:00 2001 From: cxl Date: Mon, 3 May 2010 19:56:59 +0000 Subject: [PATCH] .Web: Removed unimplemented Socket:Reuse git-svn-id: svn://ultimatepp.org/upp/trunk@2360 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Web/socket.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/uppsrc/Web/socket.h b/uppsrc/Web/socket.h index b200d86d5..2b9c59aeb 100644 --- a/uppsrc/Web/socket.h +++ b/uppsrc/Web/socket.h @@ -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& read, const Vector& write, int timeout_msec); static bool Wait(const Vector& read, const Vector& write, int timeout_msec);