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);