]> git.tdb.fi Git - libs/net.git/blob - source/net/windows/unix.cpp
Increase Communicator buffer size to 64k
[libs/net.git] / source / net / windows / unix.cpp
1 #include <stdexcept>
2 #include "platform_api.h"
3 #include "sockaddr_private.h"
4 #include "unix.h"
5
6 using namespace std;
7
8 namespace Msp {
9 namespace Net {
10
11 UnixAddr::UnixAddr(const SysAddr &):
12         abstract(false)
13 {
14         throw logic_error("AF_UNIX not supported");
15 }
16
17 UnixAddr::UnixAddr(const string &p, bool a):
18         path(p),
19         abstract(a)
20 {
21 }
22
23 SockAddr::SysAddr UnixAddr::to_sys() const
24 {
25         throw logic_error("AF_UNIX not supported");
26 }
27
28 } // namespace Net
29 } // namespace Msp