aboutsummaryrefslogtreecommitdiffstats
path: root/CommonLibs/Sockets.h
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-01-11 19:27:48 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2018-01-11 20:17:43 +0100
commit8639fee50452ac51c9963e7cb51e82989efbb5f1 (patch)
tree10aea29fb2e62b6d25100262ed8f353bde1aa355 /CommonLibs/Sockets.h
parentca46896cfe881990defb34b7cd6c7e337f1bcc76 (diff)
Remove UDDSocket class
This class is not used anymore in osmo-trx, so we can safely remove it. Change-Id: I67f90aa3d6a2a5e92292436d10928e0705c8f8ff
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