libzmq  master
ZeroMQ C++ Core Engine (LIBZMQ)
vmci.cpp
Go to the documentation of this file.
1 /*
2  Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
3 
4  This file is part of libzmq, the ZeroMQ core engine in C++.
5 
6  libzmq is free software; you can redistribute it and/or modify it under
7  the terms of the GNU Lesser General Public License (LGPL) as published
8  by the Free Software Foundation; either version 3 of the License, or
9  (at your option) any later version.
10 
11  As a special exception, the Contributors give you permission to link
12  this library with independent modules to produce an executable,
13  regardless of the license terms of these independent modules, and to
14  copy and distribute the resulting executable under terms of your choice,
15  provided that you also meet, for each linked independent module, the
16  terms and conditions of the license of that module. An independent
17  module is a module which is not derived from or based on this library.
18  If you modify this library, you must extend this exception to your
19  version of the library.
20 
21  libzmq is distributed in the hope that it will be useful, but WITHOUT
22  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
23  FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
24  License for more details.
25 
26  You should have received a copy of the GNU Lesser General Public License
27  along with this program. If not, see <http://www.gnu.org/licenses/>.
28 */
29 
30 #include "vmci.hpp"
31 
32 #if defined ZMQ_HAVE_VMCI
33 
34 #include <cassert>
35 #include <vmci_sockets.h>
36 
37 void zmq::tune_vmci_buffer_size (ctx_t *context_, fd_t sockfd_, uint64_t default_size_, uint64_t min_size_, uint64_t max_size_)
38 {
39  int family = context_->get_vmci_socket_family ();
40  assert (family != -1);
41 
42  if (default_size_ != 0) {
43  int rc = setsockopt (sockfd_, family, SO_VMCI_BUFFER_SIZE, (char*) &default_size_, sizeof default_size_);
44 #if defined ZMQ_HAVE_WINDOWS
45  wsa_assert (rc != SOCKET_ERROR);
46 #else
47  errno_assert (rc == 0);
48 #endif
49  }
50 
51  if (min_size_ != 0) {
52  int rc = setsockopt (sockfd_, family, SO_VMCI_BUFFER_SIZE, (char*) &min_size_, sizeof min_size_);
53 #if defined ZMQ_HAVE_WINDOWS
54  wsa_assert (rc != SOCKET_ERROR);
55 #else
56  errno_assert (rc == 0);
57 #endif
58  }
59 
60  if (max_size_ != 0) {
61  int rc = setsockopt (sockfd_, family, SO_VMCI_BUFFER_SIZE, (char*) &max_size_, sizeof max_size_);
62 #if defined ZMQ_HAVE_WINDOWS
63  wsa_assert (rc != SOCKET_ERROR);
64 #else
65  errno_assert (rc == 0);
66 #endif
67  }
68 }
69 
70 #if defined ZMQ_HAVE_WINDOWS
71 void zmq::tune_vmci_connect_timeout (ctx_t *context_, fd_t sockfd_, DWORD timeout_)
72 #else
73 void zmq::tune_vmci_connect_timeout (ctx_t *context_, fd_t sockfd_, struct timeval timeout_)
74 #endif
75 {
76  int family = context_->get_vmci_socket_family ();
77  assert (family != -1);
78 
79  int rc = setsockopt (sockfd_, family, SO_VMCI_CONNECT_TIMEOUT, (char*) &timeout_, sizeof timeout_);
80 #if defined ZMQ_HAVE_WINDOWS
81  wsa_assert (rc != SOCKET_ERROR);
82 #else
83  errno_assert (rc == 0);
84 #endif
85 }
86 
87 #endif
int fd_t
Definition: fd.hpp:50
#define errno_assert(x)
Definition: err.hpp:129