]> git.tdb.fi Git - libs/net.git/blobdiff - source/serversocket.cpp
Prepare for assimilating msphttp
[libs/net.git] / source / serversocket.cpp
diff --git a/source/serversocket.cpp b/source/serversocket.cpp
deleted file mode 100644 (file)
index 6028483..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#include "serversocket.h"
-
-using namespace std;
-
-namespace Msp {
-namespace Net {
-
-ServerSocket::ServerSocket(Family af, int type, int proto):
-       Socket(af, type, proto)
-{ }
-
-unsigned ServerSocket::do_write(const char *, unsigned)
-{
-       throw logic_error("can't write to ServerSocket");
-}
-
-unsigned ServerSocket::do_read(char *, unsigned)
-{
-       throw logic_error("can't read from ServerSocket");
-}
-
-} // namespace Net
-} // namespace Msp