]> git.tdb.fi Git - libs/net.git/blob - source/net/unix.cpp
Add a dynamic receiver class for more flexible packet handling
[libs/net.git] / source / net / unix.cpp
1 #include "unix.h"
2
3 using namespace std;
4
5 namespace Msp {
6 namespace Net {
7
8 string UnixAddr::str() const
9 {
10         string result = "unix:";
11         if(abstract)
12                 result += '@';
13         result += path;
14         return result;
15 }
16
17 } // namespace Net
18 } // namespace Msp