Groonga 3.0.9 Source Code Document
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
zmq_compatible.h
Go to the documentation of this file.
1 /* -*- c-basic-offset: 2 -*- */
2 /* Copyright(C) 2013 Brazil
3 
4  This library is free software; you can redistribute it and/or
5  modify it under the terms of the GNU Lesser General Public
6  License version 2.1 as published by the Free Software Foundation.
7 
8  This library is distributed in the hope that it will be useful,
9  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  Lesser General Public License for more details.
12 
13  You should have received a copy of the GNU Lesser General Public
14  License along with this library; if not, write to the Free Software
15  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17 #ifndef GRN_SUGGEST_ZMQ_COMPATIBLE_H
18 #define GRN_SUGGEST_ZMQ_COMPATIBLE_H
19 
20 #include <zmq.h>
21 
22 #ifndef ZMQ_SNDHWM
23 # define ZMQ_SNDHWM ZMQ_HWM
24 #endif
25 
26 #if ZMQ_VERSION_MAJOR == 2
27 # define zmq_msg_send(message, socket, flags) \
28  zmq_send((socket), (message), (flags))
29 # define zmq_msg_recv(message, socket, flags) \
30  zmq_recv((socket), (message), (flags))
31 #endif
32 
33 #endif /* GRN_SUGGEST_ZMQ_COMPATIBLE_H */