1 Star 0 Fork 0

chenlh/nng

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
nng_inproc.7.adoc 2.14 KB
一键复制 编辑 原始数据 按行查看 历史

nng_inproc(7)

NAME

nng_inproc - intra-process transport

SYNOPSIS

#include <nng/transport/inproc/inproc.h>

int nng_inproc_register(void);

DESCRIPTION

The inproc transport provides communication support between sockets within the same process. This may be used as an alternative to slower transports when data must be moved within the same process.

This transport tries hard to avoid copying data, and thus is very light-weight.

Registration

This transport is generally built-in to the core, so no extra steps to use it should be necessary.

URI Format

This transport uses URIs using the scheme inproc://, followed by an arbitrary string of text, terminated by a NUL byte.

Multiple URIs can be used within the same application, and they will not interfere with one another.

Two applications may also use the same URI without interfering with each other, and they will be unable to communicate with each other using that URI.

Socket Address

When using an nng_sockaddr structure, the actual structure is of type nng_sockaddr_inproc.

Transport Options

The inproc transport has no special options.

Note
While inproc accepts the option NNG_OPT_RECVMAXSZ for compatibility, the value of the option is ignored with no enforcement. As inproc peers are in the same address space, they are implicitly trusted, and thus it makes no sense to spend cycles protecting a program from itself.
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chenlh_kwick/nng.git
git@gitee.com:chenlh_kwick/nng.git
chenlh_kwick
nng
nng
master

搜索帮助