#include <nanomsg/nn.h>
int nn_device(int sock1, int sock2);
This documentation is for the TIP (development tree) of NNG and may represent unreleased changes or functionality that is experimental, and is subject to change before release. The latest released version is v1.8.0. See the documentation for v1.8.0 for the most up-to-date information. |
nn_device(3compat)
NAME
nn_device - create forwarding device (compatible API)
SYNOPSIS
DESCRIPTION
The nn_device()
function is used to create a forwarder, where messages
received on one of the two sockets sock1 and sock2 are forwarded to
the other.
This function is provided for API compatibility with legacy libnanomsg. Consider using the relevant modern API instead. |
The two sockets must be compatible, and must be raw mode sockets. More detail about devices and how they can be used is available in the new style nng_device() documentation.
RETURN VALUES
This function blocks forever, and will return -1 only when one of the sockets is closed or an error occurs.
ERRORS
EBADF
|
One of the two sockets is invalid or not open, or has |
EINVAL
|
The sockets are not compatible with each other, or not both raw. |
ENOMEM
|
Insufficient memory is available. |