aboutsummaryrefslogtreecommitdiffstats
path: root/CommonLibs/Sockets.h
diff options
context:
space:
mode:
Diffstat (limited to 'CommonLibs/Sockets.h')
-rw-r--r--CommonLibs/Sockets.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/CommonLibs/Sockets.h b/CommonLibs/Sockets.h
index 8312843..71b8b22 100644
--- a/CommonLibs/Sockets.h
+++ b/CommonLibs/Sockets.h
@@ -166,26 +166,6 @@ public:
};
-
-/** Unix Domain Datagram Socket */
-class UDDSocket : public DatagramSocket {
-
-public:
-
- UDDSocket(const char* localPath=NULL, const char* remotePath=NULL);
-
- void destination(const char* remotePath);
-
- void open(const char* localPath);
-
- /** Give the return address of the most recently received packet. */
- const struct sockaddr_un* source() const { return (const struct sockaddr_un*)mSource; }
-
- size_t addressSize() const { return sizeof(struct sockaddr_un); }
-
-};
-
-
#endif