zmqpp 4.1.2
C++ bindings for 0mq (libzmq)
Loading...
Searching...
No Matches
proxy.hpp
Go to the documentation of this file.
1/*
2 * This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 *
6 * This file is part of zmqpp.
7 * Copyright (c) 2011-2015 Contributors as noted in the AUTHORS file.
8 */
9
10#pragma once
11
12#include "socket.hpp"
13
14namespace zmqpp
15{
28 {
29 public:
34 proxy(socket &sa, socket &sb);
35
40 proxy(socket &sa, socket &sb, socket &capture);
41 };
42}
Provide a simple, non-steerable proxy that will bidirectionally forward traffic between socket A and ...
Definition proxy.hpp:28
The socket class represents the zmq sockets.
Definition socket.hpp:76
#define ZMQPP_EXPORT
Definition compatibility.hpp:39
C++ wrapper around zmq.
Definition actor.cpp:30