2009-07-29 12:07:54 +02:00
|
|
|
/*
|
2014-01-02 12:00:57 +01:00
|
|
|
Copyright (c) 2007-2014 Contributors as noted in the AUTHORS file
|
2009-07-29 12:07:54 +02:00
|
|
|
|
|
|
|
This file is part of 0MQ.
|
|
|
|
|
|
|
|
0MQ is free software; you can redistribute it and/or modify it under
|
2010-10-30 15:08:28 +02:00
|
|
|
the terms of the GNU Lesser General Public License as published by
|
2009-07-29 12:07:54 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
0MQ is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2010-10-30 15:08:28 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2010-10-30 15:08:28 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2009-07-29 12:07:54 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2013-10-02 12:05:14 +02:00
|
|
|
|
|
|
|
*************************************************************************
|
|
|
|
NOTE to contributors. This file comprises the principal public contract
|
|
|
|
for ZeroMQ API users (along with zmq_utils.h). Any change to this file
|
|
|
|
supplied in a stable release SHOULD not break existing applications.
|
|
|
|
In practice this means that the value of constants must not change, and
|
|
|
|
that old values may not be reused for new constants.
|
|
|
|
*************************************************************************
|
2009-07-29 12:07:54 +02:00
|
|
|
*/
|
|
|
|
|
2009-08-03 11:30:13 +02:00
|
|
|
#ifndef __ZMQ_H_INCLUDED__
|
|
|
|
#define __ZMQ_H_INCLUDED__
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2013-11-24 12:47:24 +01:00
|
|
|
/* Version macros for compile-time API version detection */
|
|
|
|
#define ZMQ_VERSION_MAJOR 4
|
2014-10-14 10:39:27 +02:00
|
|
|
#define ZMQ_VERSION_MINOR 2
|
2013-11-24 12:47:24 +01:00
|
|
|
#define ZMQ_VERSION_PATCH 0
|
|
|
|
|
|
|
|
#define ZMQ_MAKE_VERSION(major, minor, patch) \
|
|
|
|
((major) * 10000 + (minor) * 100 + (patch))
|
|
|
|
#define ZMQ_VERSION \
|
|
|
|
ZMQ_MAKE_VERSION(ZMQ_VERSION_MAJOR, ZMQ_VERSION_MINOR, ZMQ_VERSION_PATCH)
|
|
|
|
|
2009-07-29 12:07:54 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-02-19 16:49:23 +01:00
|
|
|
#if !defined _WIN32_WCE
|
2009-09-22 12:08:18 +02:00
|
|
|
#include <errno.h>
|
2012-03-14 16:12:28 +01:00
|
|
|
#endif
|
2009-07-29 12:07:54 +02:00
|
|
|
#include <stddef.h>
|
2012-02-16 19:04:25 +01:00
|
|
|
#include <stdio.h>
|
2009-12-10 16:46:22 +01:00
|
|
|
#if defined _WIN32
|
2011-06-18 20:44:03 +02:00
|
|
|
#include <winsock2.h>
|
2009-12-10 16:46:22 +01:00
|
|
|
#endif
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2010-12-01 10:33:07 +01:00
|
|
|
/* Handle DSO symbol visibility */
|
2010-04-12 16:49:13 +02:00
|
|
|
#if defined _WIN32
|
2013-02-24 15:44:14 +01:00
|
|
|
# if defined ZMQ_STATIC
|
|
|
|
# define ZMQ_EXPORT
|
|
|
|
# elif defined DLL_EXPORT
|
2010-04-12 16:49:13 +02:00
|
|
|
# define ZMQ_EXPORT __declspec(dllexport)
|
|
|
|
# else
|
|
|
|
# define ZMQ_EXPORT __declspec(dllimport)
|
|
|
|
# endif
|
2009-07-29 12:07:54 +02:00
|
|
|
#else
|
2010-12-01 10:33:07 +01:00
|
|
|
# if defined __SUNPRO_C || defined __SUNPRO_CC
|
|
|
|
# define ZMQ_EXPORT __global
|
|
|
|
# elif (defined __GNUC__ && __GNUC__ >= 4) || defined __INTEL_COMPILER
|
|
|
|
# define ZMQ_EXPORT __attribute__ ((visibility("default")))
|
|
|
|
# else
|
|
|
|
# define ZMQ_EXPORT
|
2010-11-25 17:12:31 +01:00
|
|
|
# endif
|
2009-07-29 12:07:54 +02:00
|
|
|
#endif
|
|
|
|
|
2013-05-19 11:01:33 +02:00
|
|
|
/* Define integer types needed for event interface */
|
|
|
|
#if defined ZMQ_HAVE_SOLARIS || defined ZMQ_HAVE_OPENVMS
|
|
|
|
# include <inttypes.h>
|
|
|
|
#elif defined _MSC_VER && _MSC_VER < 1600
|
|
|
|
# ifndef int32_t
|
|
|
|
typedef __int32 int32_t;
|
|
|
|
# endif
|
|
|
|
# ifndef uint16_t
|
|
|
|
typedef unsigned __int16 uint16_t;
|
|
|
|
# endif
|
2013-09-24 12:10:31 +02:00
|
|
|
# ifndef uint8_t
|
|
|
|
typedef unsigned __int8 uint8_t;
|
|
|
|
# endif
|
2013-05-19 11:01:33 +02:00
|
|
|
#else
|
|
|
|
# include <stdint.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2010-04-11 14:00:40 +02:00
|
|
|
/******************************************************************************/
|
2010-09-04 16:10:14 +02:00
|
|
|
/* 0MQ errors. */
|
2010-04-11 14:00:40 +02:00
|
|
|
/******************************************************************************/
|
2009-09-22 11:52:35 +02:00
|
|
|
|
2010-12-04 23:14:38 +01:00
|
|
|
/* A number random enough not to collide with different errno ranges on */
|
2010-04-11 14:00:40 +02:00
|
|
|
/* different OSes. The assumption is that error_t is at least 32-bit type. */
|
2009-09-22 11:52:35 +02:00
|
|
|
#define ZMQ_HAUSNUMERO 156384712
|
|
|
|
|
2010-04-11 14:00:40 +02:00
|
|
|
/* On Windows platform some of the standard POSIX errnos are not defined. */
|
2009-09-22 12:08:18 +02:00
|
|
|
#ifndef ENOTSUP
|
|
|
|
#define ENOTSUP (ZMQ_HAUSNUMERO + 1)
|
|
|
|
#endif
|
|
|
|
#ifndef EPROTONOSUPPORT
|
|
|
|
#define EPROTONOSUPPORT (ZMQ_HAUSNUMERO + 2)
|
|
|
|
#endif
|
2009-10-01 13:48:04 +02:00
|
|
|
#ifndef ENOBUFS
|
|
|
|
#define ENOBUFS (ZMQ_HAUSNUMERO + 3)
|
|
|
|
#endif
|
|
|
|
#ifndef ENETDOWN
|
|
|
|
#define ENETDOWN (ZMQ_HAUSNUMERO + 4)
|
|
|
|
#endif
|
|
|
|
#ifndef EADDRINUSE
|
|
|
|
#define EADDRINUSE (ZMQ_HAUSNUMERO + 5)
|
|
|
|
#endif
|
|
|
|
#ifndef EADDRNOTAVAIL
|
|
|
|
#define EADDRNOTAVAIL (ZMQ_HAUSNUMERO + 6)
|
|
|
|
#endif
|
2009-11-27 14:30:48 +01:00
|
|
|
#ifndef ECONNREFUSED
|
|
|
|
#define ECONNREFUSED (ZMQ_HAUSNUMERO + 7)
|
|
|
|
#endif
|
2009-12-29 16:42:56 +01:00
|
|
|
#ifndef EINPROGRESS
|
|
|
|
#define EINPROGRESS (ZMQ_HAUSNUMERO + 8)
|
|
|
|
#endif
|
2011-04-09 09:46:59 +02:00
|
|
|
#ifndef ENOTSOCK
|
|
|
|
#define ENOTSOCK (ZMQ_HAUSNUMERO + 9)
|
|
|
|
#endif
|
2012-06-18 23:13:17 +02:00
|
|
|
#ifndef EMSGSIZE
|
|
|
|
#define EMSGSIZE (ZMQ_HAUSNUMERO + 10)
|
|
|
|
#endif
|
2011-08-15 20:39:48 +02:00
|
|
|
#ifndef EAFNOSUPPORT
|
2012-06-18 23:13:17 +02:00
|
|
|
#define EAFNOSUPPORT (ZMQ_HAUSNUMERO + 11)
|
|
|
|
#endif
|
|
|
|
#ifndef ENETUNREACH
|
|
|
|
#define ENETUNREACH (ZMQ_HAUSNUMERO + 12)
|
|
|
|
#endif
|
|
|
|
#ifndef ECONNABORTED
|
|
|
|
#define ECONNABORTED (ZMQ_HAUSNUMERO + 13)
|
|
|
|
#endif
|
|
|
|
#ifndef ECONNRESET
|
|
|
|
#define ECONNRESET (ZMQ_HAUSNUMERO + 14)
|
|
|
|
#endif
|
|
|
|
#ifndef ENOTCONN
|
|
|
|
#define ENOTCONN (ZMQ_HAUSNUMERO + 15)
|
|
|
|
#endif
|
|
|
|
#ifndef ETIMEDOUT
|
|
|
|
#define ETIMEDOUT (ZMQ_HAUSNUMERO + 16)
|
2011-08-15 20:39:48 +02:00
|
|
|
#endif
|
2012-04-04 15:39:11 +02:00
|
|
|
#ifndef EHOSTUNREACH
|
2012-06-18 23:13:17 +02:00
|
|
|
#define EHOSTUNREACH (ZMQ_HAUSNUMERO + 17)
|
2012-04-04 15:39:11 +02:00
|
|
|
#endif
|
2012-06-19 20:15:48 +02:00
|
|
|
#ifndef ENETRESET
|
|
|
|
#define ENETRESET (ZMQ_HAUSNUMERO + 18)
|
|
|
|
#endif
|
2009-09-22 12:08:18 +02:00
|
|
|
|
2010-04-11 14:00:40 +02:00
|
|
|
/* Native 0MQ error codes. */
|
2009-09-22 12:08:18 +02:00
|
|
|
#define EFSM (ZMQ_HAUSNUMERO + 51)
|
|
|
|
#define ENOCOMPATPROTO (ZMQ_HAUSNUMERO + 52)
|
2010-04-11 16:36:27 +02:00
|
|
|
#define ETERM (ZMQ_HAUSNUMERO + 53)
|
2010-09-09 08:25:00 +02:00
|
|
|
#define EMTHREAD (ZMQ_HAUSNUMERO + 54)
|
2009-09-22 11:52:35 +02:00
|
|
|
|
2010-04-11 14:00:40 +02:00
|
|
|
/* This function retrieves the errno as it is known to 0MQ library. The goal */
|
|
|
|
/* of this function is to make the code 100% portable, including where 0MQ */
|
|
|
|
/* compiled with certain CRT library (on Windows) is linked to an */
|
|
|
|
/* application that uses different CRT library. */
|
2011-01-06 08:42:57 +01:00
|
|
|
ZMQ_EXPORT int zmq_errno (void);
|
2010-04-11 14:00:40 +02:00
|
|
|
|
|
|
|
/* Resolves system errors and 0MQ errors to human-readable string. */
|
2009-09-22 11:52:35 +02:00
|
|
|
ZMQ_EXPORT const char *zmq_strerror (int errnum);
|
|
|
|
|
2013-11-24 12:47:24 +01:00
|
|
|
/* Run-time API version detection */
|
|
|
|
ZMQ_EXPORT void zmq_version (int *major, int *minor, int *patch);
|
|
|
|
|
2012-03-20 01:41:20 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
/* 0MQ infrastructure (a.k.a. context) initialisation & termination. */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
/* New API */
|
2013-10-08 14:51:19 +02:00
|
|
|
/* Context options */
|
|
|
|
#define ZMQ_IO_THREADS 1
|
|
|
|
#define ZMQ_MAX_SOCKETS 2
|
2014-02-14 10:09:19 +01:00
|
|
|
#define ZMQ_SOCKET_LIMIT 3
|
2014-07-02 12:07:35 +02:00
|
|
|
#define ZMQ_THREAD_PRIORITY 3
|
|
|
|
#define ZMQ_THREAD_SCHED_POLICY 4
|
2012-03-20 01:41:20 +01:00
|
|
|
|
2013-10-08 14:51:19 +02:00
|
|
|
/* Default for new contexts */
|
|
|
|
#define ZMQ_IO_THREADS_DFLT 1
|
2013-11-11 14:41:42 +01:00
|
|
|
#define ZMQ_MAX_SOCKETS_DFLT 1023
|
2014-07-02 12:07:35 +02:00
|
|
|
#define ZMQ_THREAD_PRIORITY_DFLT -1
|
|
|
|
#define ZMQ_THREAD_SCHED_POLICY_DFLT -1
|
2012-03-20 01:41:20 +01:00
|
|
|
|
|
|
|
ZMQ_EXPORT void *zmq_ctx_new (void);
|
2013-01-17 23:36:38 +01:00
|
|
|
ZMQ_EXPORT int zmq_ctx_term (void *context);
|
2013-09-10 14:30:00 +02:00
|
|
|
ZMQ_EXPORT int zmq_ctx_shutdown (void *ctx_);
|
2012-03-20 01:41:20 +01:00
|
|
|
ZMQ_EXPORT int zmq_ctx_set (void *context, int option, int optval);
|
|
|
|
ZMQ_EXPORT int zmq_ctx_get (void *context, int option);
|
|
|
|
|
|
|
|
/* Old (legacy) API */
|
|
|
|
ZMQ_EXPORT void *zmq_init (int io_threads);
|
|
|
|
ZMQ_EXPORT int zmq_term (void *context);
|
2013-01-17 23:36:38 +01:00
|
|
|
ZMQ_EXPORT int zmq_ctx_destroy (void *context);
|
2012-03-20 01:41:20 +01:00
|
|
|
|
|
|
|
|
2010-04-11 14:00:40 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* 0MQ message definition. */
|
|
|
|
/******************************************************************************/
|
2009-09-22 10:57:46 +02:00
|
|
|
|
2014-04-29 22:30:51 +02:00
|
|
|
typedef struct zmq_msg_t {unsigned char _ [48];} zmq_msg_t;
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2009-12-16 15:08:37 +01:00
|
|
|
typedef void (zmq_free_fn) (void *data, void *hint);
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2009-12-05 11:20:57 +01:00
|
|
|
ZMQ_EXPORT int zmq_msg_init (zmq_msg_t *msg);
|
2009-09-23 10:22:54 +02:00
|
|
|
ZMQ_EXPORT int zmq_msg_init_size (zmq_msg_t *msg, size_t size);
|
|
|
|
ZMQ_EXPORT int zmq_msg_init_data (zmq_msg_t *msg, void *data,
|
2009-12-16 15:08:37 +01:00
|
|
|
size_t size, zmq_free_fn *ffn, void *hint);
|
2014-10-20 23:18:18 +02:00
|
|
|
ZMQ_EXPORT int zmq_msg_send (zmq_msg_t *msg, void *s, int flags);
|
|
|
|
ZMQ_EXPORT int zmq_msg_recv (zmq_msg_t *msg, void *s, int flags);
|
2009-09-23 10:22:54 +02:00
|
|
|
ZMQ_EXPORT int zmq_msg_close (zmq_msg_t *msg);
|
|
|
|
ZMQ_EXPORT int zmq_msg_move (zmq_msg_t *dest, zmq_msg_t *src);
|
|
|
|
ZMQ_EXPORT int zmq_msg_copy (zmq_msg_t *dest, zmq_msg_t *src);
|
|
|
|
ZMQ_EXPORT void *zmq_msg_data (zmq_msg_t *msg);
|
2012-02-17 10:48:04 +01:00
|
|
|
ZMQ_EXPORT size_t zmq_msg_size (zmq_msg_t *msg);
|
2012-02-16 01:41:09 +01:00
|
|
|
ZMQ_EXPORT int zmq_msg_more (zmq_msg_t *msg);
|
2014-03-03 13:19:40 +01:00
|
|
|
ZMQ_EXPORT int zmq_msg_get (zmq_msg_t *msg, int property);
|
|
|
|
ZMQ_EXPORT int zmq_msg_set (zmq_msg_t *msg, int property, int optval);
|
2014-04-30 13:11:12 +02:00
|
|
|
ZMQ_EXPORT const char *zmq_msg_gets (zmq_msg_t *msg, const char *property);
|
2012-03-21 20:19:40 +01:00
|
|
|
|
2012-02-16 01:41:09 +01:00
|
|
|
|
2010-04-11 14:00:40 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* 0MQ socket definition. */
|
|
|
|
/******************************************************************************/
|
2009-09-22 10:57:46 +02:00
|
|
|
|
2013-09-09 20:40:34 +02:00
|
|
|
/* Socket types. */
|
2013-10-08 14:51:19 +02:00
|
|
|
#define ZMQ_PAIR 0
|
|
|
|
#define ZMQ_PUB 1
|
|
|
|
#define ZMQ_SUB 2
|
|
|
|
#define ZMQ_REQ 3
|
|
|
|
#define ZMQ_REP 4
|
|
|
|
#define ZMQ_DEALER 5
|
|
|
|
#define ZMQ_ROUTER 6
|
|
|
|
#define ZMQ_PULL 7
|
|
|
|
#define ZMQ_PUSH 8
|
|
|
|
#define ZMQ_XPUB 9
|
|
|
|
#define ZMQ_XSUB 10
|
|
|
|
#define ZMQ_STREAM 11
|
|
|
|
|
|
|
|
/* Deprecated aliases */
|
|
|
|
#define ZMQ_XREQ ZMQ_DEALER
|
|
|
|
#define ZMQ_XREP ZMQ_ROUTER
|
2011-10-31 15:51:11 +01:00
|
|
|
|
2010-04-11 14:00:40 +02:00
|
|
|
/* Socket options. */
|
2013-10-08 14:51:19 +02:00
|
|
|
#define ZMQ_AFFINITY 4
|
|
|
|
#define ZMQ_IDENTITY 5
|
|
|
|
#define ZMQ_SUBSCRIBE 6
|
|
|
|
#define ZMQ_UNSUBSCRIBE 7
|
|
|
|
#define ZMQ_RATE 8
|
|
|
|
#define ZMQ_RECOVERY_IVL 9
|
|
|
|
#define ZMQ_SNDBUF 11
|
|
|
|
#define ZMQ_RCVBUF 12
|
|
|
|
#define ZMQ_RCVMORE 13
|
|
|
|
#define ZMQ_FD 14
|
|
|
|
#define ZMQ_EVENTS 15
|
|
|
|
#define ZMQ_TYPE 16
|
|
|
|
#define ZMQ_LINGER 17
|
|
|
|
#define ZMQ_RECONNECT_IVL 18
|
|
|
|
#define ZMQ_BACKLOG 19
|
|
|
|
#define ZMQ_RECONNECT_IVL_MAX 21
|
|
|
|
#define ZMQ_MAXMSGSIZE 22
|
|
|
|
#define ZMQ_SNDHWM 23
|
|
|
|
#define ZMQ_RCVHWM 24
|
|
|
|
#define ZMQ_MULTICAST_HOPS 25
|
|
|
|
#define ZMQ_RCVTIMEO 27
|
|
|
|
#define ZMQ_SNDTIMEO 28
|
|
|
|
#define ZMQ_LAST_ENDPOINT 32
|
|
|
|
#define ZMQ_ROUTER_MANDATORY 33
|
|
|
|
#define ZMQ_TCP_KEEPALIVE 34
|
|
|
|
#define ZMQ_TCP_KEEPALIVE_CNT 35
|
|
|
|
#define ZMQ_TCP_KEEPALIVE_IDLE 36
|
|
|
|
#define ZMQ_TCP_KEEPALIVE_INTVL 37
|
|
|
|
#define ZMQ_IMMEDIATE 39
|
|
|
|
#define ZMQ_XPUB_VERBOSE 40
|
|
|
|
#define ZMQ_ROUTER_RAW 41
|
|
|
|
#define ZMQ_IPV6 42
|
|
|
|
#define ZMQ_MECHANISM 43
|
|
|
|
#define ZMQ_PLAIN_SERVER 44
|
|
|
|
#define ZMQ_PLAIN_USERNAME 45
|
|
|
|
#define ZMQ_PLAIN_PASSWORD 46
|
|
|
|
#define ZMQ_CURVE_SERVER 47
|
|
|
|
#define ZMQ_CURVE_PUBLICKEY 48
|
|
|
|
#define ZMQ_CURVE_SECRETKEY 49
|
|
|
|
#define ZMQ_CURVE_SERVERKEY 50
|
|
|
|
#define ZMQ_PROBE_ROUTER 51
|
|
|
|
#define ZMQ_REQ_CORRELATE 52
|
|
|
|
#define ZMQ_REQ_RELAXED 53
|
|
|
|
#define ZMQ_CONFLATE 54
|
|
|
|
#define ZMQ_ZAP_DOMAIN 55
|
2013-11-01 04:42:48 +01:00
|
|
|
#define ZMQ_ROUTER_HANDOVER 56
|
2013-11-25 04:01:21 +01:00
|
|
|
#define ZMQ_TOS 57
|
2014-01-19 09:27:57 +01:00
|
|
|
#define ZMQ_CONNECT_RID 61
|
2013-09-25 05:20:01 +02:00
|
|
|
#define ZMQ_GSSAPI_SERVER 62
|
2014-04-23 19:20:22 +02:00
|
|
|
#define ZMQ_GSSAPI_PRINCIPAL 63
|
|
|
|
#define ZMQ_GSSAPI_SERVICE_PRINCIPAL 64
|
2014-04-23 20:01:54 +02:00
|
|
|
#define ZMQ_GSSAPI_PLAINTEXT 65
|
2014-05-09 15:54:24 +02:00
|
|
|
#define ZMQ_HANDSHAKE_IVL 66
|
2014-05-12 09:24:31 +02:00
|
|
|
#define ZMQ_IDENTITY_FD 67
|
2014-06-22 10:32:22 +02:00
|
|
|
#define ZMQ_SOCKS_PROXY 68
|
2014-08-08 19:45:41 +02:00
|
|
|
#define ZMQ_XPUB_NODROP 69
|
2014-11-17 11:56:59 +01:00
|
|
|
#define ZMQ_BLOCKY 70
|
2014-11-26 09:38:54 +01:00
|
|
|
#define ZMQ_XPUB_MANUAL 71
|
2014-11-26 12:37:36 +01:00
|
|
|
#define ZMQ_XPUB_WELCOME_MSG 72
|
2014-01-19 09:27:57 +01:00
|
|
|
|
2011-11-06 14:03:51 +01:00
|
|
|
/* Message options */
|
2013-10-08 14:51:19 +02:00
|
|
|
#define ZMQ_MORE 1
|
2014-01-06 10:31:42 +01:00
|
|
|
#define ZMQ_SRCFD 2
|
2014-07-12 16:01:27 +02:00
|
|
|
#define ZMQ_SHARED 3
|
2011-11-06 14:03:51 +01:00
|
|
|
|
2010-04-11 14:00:40 +02:00
|
|
|
/* Send/recv options. */
|
2013-10-08 14:51:19 +02:00
|
|
|
#define ZMQ_DONTWAIT 1
|
|
|
|
#define ZMQ_SNDMORE 2
|
2012-10-08 09:36:35 +02:00
|
|
|
|
2013-05-15 17:54:03 +02:00
|
|
|
/* Security mechanisms */
|
2013-10-08 14:51:19 +02:00
|
|
|
#define ZMQ_NULL 0
|
|
|
|
#define ZMQ_PLAIN 1
|
|
|
|
#define ZMQ_CURVE 2
|
2013-09-25 05:20:01 +02:00
|
|
|
#define ZMQ_GSSAPI 3
|
2013-10-08 14:51:19 +02:00
|
|
|
|
|
|
|
/* Deprecated options and aliases */
|
2014-10-14 16:29:54 +02:00
|
|
|
#define ZMQ_TCP_ACCEPT_FILTER 38
|
|
|
|
#define ZMQ_IPC_FILTER_PID 58
|
|
|
|
#define ZMQ_IPC_FILTER_UID 59
|
|
|
|
#define ZMQ_IPC_FILTER_GID 60
|
2013-10-08 14:51:19 +02:00
|
|
|
#define ZMQ_IPV4ONLY 31
|
|
|
|
#define ZMQ_DELAY_ATTACH_ON_CONNECT ZMQ_IMMEDIATE
|
|
|
|
#define ZMQ_NOBLOCK ZMQ_DONTWAIT
|
|
|
|
#define ZMQ_FAIL_UNROUTABLE ZMQ_ROUTER_MANDATORY
|
|
|
|
#define ZMQ_ROUTER_BEHAVIOR ZMQ_ROUTER_MANDATORY
|
2009-12-05 11:20:57 +01:00
|
|
|
|
2012-05-04 03:32:46 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* 0MQ socket events and monitoring */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-04-28 11:30:04 +02:00
|
|
|
/* Socket transport events (TCP and IPC only) */
|
|
|
|
|
|
|
|
#define ZMQ_EVENT_CONNECTED 0x0001
|
|
|
|
#define ZMQ_EVENT_CONNECT_DELAYED 0x0002
|
|
|
|
#define ZMQ_EVENT_CONNECT_RETRIED 0x0004
|
|
|
|
#define ZMQ_EVENT_LISTENING 0x0008
|
|
|
|
#define ZMQ_EVENT_BIND_FAILED 0x0010
|
|
|
|
#define ZMQ_EVENT_ACCEPTED 0x0020
|
|
|
|
#define ZMQ_EVENT_ACCEPT_FAILED 0x0040
|
|
|
|
#define ZMQ_EVENT_CLOSED 0x0080
|
|
|
|
#define ZMQ_EVENT_CLOSE_FAILED 0x0100
|
|
|
|
#define ZMQ_EVENT_DISCONNECTED 0x0200
|
|
|
|
#define ZMQ_EVENT_MONITOR_STOPPED 0x0400
|
|
|
|
#define ZMQ_EVENT_ALL 0xFFFF
|
2012-05-04 03:32:46 +02:00
|
|
|
|
2012-03-20 01:41:20 +01:00
|
|
|
ZMQ_EXPORT void *zmq_socket (void *, int type);
|
|
|
|
ZMQ_EXPORT int zmq_close (void *s);
|
|
|
|
ZMQ_EXPORT int zmq_setsockopt (void *s, int option, const void *optval,
|
2013-09-09 20:40:34 +02:00
|
|
|
size_t optvallen);
|
2012-03-20 01:41:20 +01:00
|
|
|
ZMQ_EXPORT int zmq_getsockopt (void *s, int option, void *optval,
|
2010-04-09 13:04:15 +02:00
|
|
|
size_t *optvallen);
|
2012-03-20 01:41:20 +01:00
|
|
|
ZMQ_EXPORT int zmq_bind (void *s, const char *addr);
|
|
|
|
ZMQ_EXPORT int zmq_connect (void *s, const char *addr);
|
2012-04-20 16:59:08 +02:00
|
|
|
ZMQ_EXPORT int zmq_unbind (void *s, const char *addr);
|
|
|
|
ZMQ_EXPORT int zmq_disconnect (void *s, const char *addr);
|
2014-10-20 23:18:18 +02:00
|
|
|
ZMQ_EXPORT int zmq_send (void *s, const void *buf, size_t len, int flags);
|
|
|
|
ZMQ_EXPORT int zmq_send_const (void *s, const void *buf, size_t len, int flags);
|
|
|
|
ZMQ_EXPORT int zmq_recv (void *s, void *buf, size_t len, int flags);
|
2012-09-21 13:53:31 +02:00
|
|
|
ZMQ_EXPORT int zmq_socket_monitor (void *s, const char *addr, int events);
|
2012-02-15 22:37:35 +01:00
|
|
|
|
2012-02-08 02:58:35 +01:00
|
|
|
|
2010-04-11 14:00:40 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* I/O multiplexing. */
|
|
|
|
/******************************************************************************/
|
2009-10-01 10:56:17 +02:00
|
|
|
|
2013-10-08 14:51:19 +02:00
|
|
|
#define ZMQ_POLLIN 1
|
|
|
|
#define ZMQ_POLLOUT 2
|
|
|
|
#define ZMQ_POLLERR 4
|
2014-10-17 17:21:41 +02:00
|
|
|
#define ZMQ_POLLPRI 8
|
2009-10-01 10:56:17 +02:00
|
|
|
|
2014-03-12 15:11:12 +01:00
|
|
|
typedef struct zmq_pollitem_t
|
2009-10-01 10:56:17 +02:00
|
|
|
{
|
2012-03-20 01:41:20 +01:00
|
|
|
void *socket;
|
2009-12-10 16:46:22 +01:00
|
|
|
#if defined _WIN32
|
|
|
|
SOCKET fd;
|
|
|
|
#else
|
2009-10-01 10:56:17 +02:00
|
|
|
int fd;
|
2009-12-10 16:46:22 +01:00
|
|
|
#endif
|
2009-10-01 10:56:17 +02:00
|
|
|
short events;
|
|
|
|
short revents;
|
|
|
|
} zmq_pollitem_t;
|
|
|
|
|
2013-10-08 14:51:19 +02:00
|
|
|
#define ZMQ_POLLITEMS_DFLT 16
|
|
|
|
|
2010-01-04 15:46:20 +01:00
|
|
|
ZMQ_EXPORT int zmq_poll (zmq_pollitem_t *items, int nitems, long timeout);
|
2009-10-01 10:56:17 +02:00
|
|
|
|
2014-06-27 15:56:29 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* Message proxying */
|
|
|
|
/******************************************************************************/
|
2012-03-16 22:39:11 +01:00
|
|
|
|
2013-10-18 15:01:05 +02:00
|
|
|
ZMQ_EXPORT int zmq_proxy (void *frontend, void *backend, void *capture);
|
|
|
|
ZMQ_EXPORT int zmq_proxy_steerable (void *frontend, void *backend, void *capture, void *control);
|
2012-09-06 12:20:21 +02:00
|
|
|
|
2014-06-27 15:56:29 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* Probe library capabilities */
|
|
|
|
/******************************************************************************/
|
2014-06-18 15:10:18 +02:00
|
|
|
|
|
|
|
#define ZMQ_HAS_CAPABILITIES 1
|
|
|
|
ZMQ_EXPORT int zmq_has (const char *capability);
|
|
|
|
|
2013-10-08 14:51:19 +02:00
|
|
|
/* Deprecated aliases */
|
|
|
|
#define ZMQ_STREAMER 1
|
|
|
|
#define ZMQ_FORWARDER 2
|
|
|
|
#define ZMQ_QUEUE 3
|
2014-06-18 15:10:18 +02:00
|
|
|
|
|
|
|
/* Deprecated methods */
|
2012-09-06 12:20:21 +02:00
|
|
|
ZMQ_EXPORT int zmq_device (int type, void *frontend, void *backend);
|
2014-06-18 15:10:18 +02:00
|
|
|
ZMQ_EXPORT int zmq_sendmsg (void *s, zmq_msg_t *msg, int flags);
|
|
|
|
ZMQ_EXPORT int zmq_recvmsg (void *s, zmq_msg_t *msg, int flags);
|
|
|
|
|
2012-03-16 22:39:11 +01:00
|
|
|
|
2014-06-27 15:56:29 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* Encryption functions */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
/* Encode data with Z85 encoding. Returns encoded data */
|
2014-08-14 00:00:00 +02:00
|
|
|
ZMQ_EXPORT char *zmq_z85_encode (char *dest, const uint8_t *data, size_t size);
|
2014-06-27 15:56:29 +02:00
|
|
|
|
|
|
|
/* Decode data with Z85 encoding. Returns decoded data */
|
2014-08-14 00:00:00 +02:00
|
|
|
ZMQ_EXPORT uint8_t *zmq_z85_decode (uint8_t *dest, const char *string);
|
2014-06-27 15:56:29 +02:00
|
|
|
|
|
|
|
/* Generate z85-encoded public and private keypair with libsodium. */
|
|
|
|
/* Returns 0 on success. */
|
|
|
|
ZMQ_EXPORT int zmq_curve_keypair (char *z85_public_key, char *z85_secret_key);
|
|
|
|
|
2014-12-23 01:14:38 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
/* Atomic utility methods */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
ZMQ_EXPORT void *zmq_atomic_counter_new (void);
|
|
|
|
ZMQ_EXPORT void zmq_atomic_counter_set (void *counter, int value);
|
|
|
|
ZMQ_EXPORT int zmq_atomic_counter_inc (void *counter);
|
2014-12-23 15:20:10 +01:00
|
|
|
ZMQ_EXPORT int zmq_atomic_counter_dec (void *counter);
|
2014-12-23 01:14:38 +01:00
|
|
|
ZMQ_EXPORT int zmq_atomic_counter_value (void *counter);
|
|
|
|
ZMQ_EXPORT void zmq_atomic_counter_destroy (void **counter_p);
|
|
|
|
|
2014-06-27 15:56:29 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* These functions are not documented by man pages -- use at your own risk. */
|
|
|
|
/* If you need these to be part of the formal ZMQ API, then (a) write a man */
|
|
|
|
/* page, and (b) write a test case in tests. */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
struct iovec;
|
|
|
|
|
|
|
|
ZMQ_EXPORT int zmq_sendiov (void *s, struct iovec *iov, size_t count, int flags);
|
|
|
|
ZMQ_EXPORT int zmq_recviov (void *s, struct iovec *iov, size_t *count, int flags);
|
|
|
|
|
|
|
|
/* Helper functions are used by perf tests so that they don't have to care */
|
|
|
|
/* about minutiae of time-related functions on different OS platforms. */
|
|
|
|
|
|
|
|
/* Starts the stopwatch. Returns the handle to the watch. */
|
|
|
|
ZMQ_EXPORT void *zmq_stopwatch_start (void);
|
|
|
|
|
|
|
|
/* Stops the stopwatch. Returns the number of microseconds elapsed since */
|
|
|
|
/* the stopwatch was started. */
|
|
|
|
ZMQ_EXPORT unsigned long zmq_stopwatch_stop (void *watch_);
|
|
|
|
|
|
|
|
/* Sleeps for specified number of seconds. */
|
|
|
|
ZMQ_EXPORT void zmq_sleep (int seconds_);
|
|
|
|
|
|
|
|
typedef void (zmq_thread_fn) (void*);
|
|
|
|
|
|
|
|
/* Start a thread. Returns a handle to the thread. */
|
|
|
|
ZMQ_EXPORT void *zmq_threadstart (zmq_thread_fn* func, void* arg);
|
|
|
|
|
|
|
|
/* Wait for thread to complete then free up resources. */
|
|
|
|
ZMQ_EXPORT void zmq_threadclose (void* thread);
|
|
|
|
|
|
|
|
|
2010-11-25 17:12:31 +01:00
|
|
|
#undef ZMQ_EXPORT
|
|
|
|
|
2009-07-29 12:07:54 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
2010-09-04 17:12:08 +02:00
|
|
|
|