// we use gettimeofday() now to determine the packet rcv time, since on some boxes...
[senf.git] / senf / Socket / Protocols / UN / UNSocketProtocol.cc
index ff0f217..88bca92 100644 (file)
@@ -31,6 +31,7 @@
 #include <sys/socket.h>
 #include <sys/ioctl.h>
 #include <linux/sockios.h> // for SIOCINQ / SIOCOUTQ
+#include "UNAddressing.hh"
 #include <senf/Utils/Logger/SenfLog.hh>
 #include <senf/Utils/Exception.hh>
 
@@ -52,18 +53,18 @@ prefix_ bool senf::UNSocketProtocol::eof()
     return false;
 }
 
-prefix_ void senf::UNSocketProtocol::close() 
+prefix_ void senf::UNSocketProtocol::close()
 {
     check_and_unlink();
-  
+
     SocketProtocol::close();
 }
 
-prefix_ void senf::UNSocketProtocol::terminate() 
+prefix_ void senf::UNSocketProtocol::terminate()
     const
 {
     check_and_unlink();
-    
+
     SocketProtocol::terminate();
 }
 
@@ -79,7 +80,7 @@ prefix_ void senf::UNSocketProtocol::check_and_unlink()
         SENF_LOG(("UNSocketProtocol::check_and_unlink() failed; [" << e.errorString() << "]."));
     }
 }
-    
+
 ///////////////////////////////cc.e////////////////////////////////////////
 #undef prefix_
 //#include "UNSocketProtocol.mpp"