Realistic 3D camera system
3D camera system components
datagram_protocol.hpp
Go to the documentation of this file.
1 //
2 // local/datagram_protocol.hpp
3 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~
4 //
5 // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6 //
7 // Distributed under the Boost Software License, Version 1.0. (See accompanying
8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 //
10 
11 #ifndef ASIO_LOCAL_DATAGRAM_PROTOCOL_HPP
12 #define ASIO_LOCAL_DATAGRAM_PROTOCOL_HPP
13 
14 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
15 # pragma once
16 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
17 
18 #include "asio/detail/config.hpp"
19 
20 #if defined(ASIO_HAS_LOCAL_SOCKETS) \
21  || defined(GENERATING_DOCUMENTATION)
22 
26 
28 
29 namespace asio {
30 namespace local {
31 
33 
44 class datagram_protocol
45 {
46 public:
48  int type() const
49  {
50  return SOCK_DGRAM;
51  }
52 
54  int protocol() const
55  {
56  return 0;
57  }
58 
60  int family() const
61  {
62  return AF_UNIX;
63  }
64 
66  typedef basic_endpoint<datagram_protocol> endpoint;
67 
69  typedef basic_datagram_socket<datagram_protocol> socket;
70 };
71 
72 } // namespace local
73 } // namespace asio
74 
76 
77 #endif // defined(ASIO_HAS_LOCAL_SOCKETS)
78  // || defined(GENERATING_DOCUMENTATION)
79 
80 #endif // ASIO_LOCAL_DATAGRAM_PROTOCOL_HPP
socket_type socket(int af, int type, int protocol, asio::error_code &ec)