aboutsummaryrefslogtreecommitdiff
path: root/docs/man/nng_socket_pair.3supp.adoc
Commit message (Collapse)AuthorAge
* Convert nng_socket_pair.Garrett D'Amore2024-10-11
| | | | Also some cleanups on the organization of the mdbook.
* Move some supplemental APIs to reduce friction in using them.Garrett D'Amore2024-04-23
| | | | | | The supplemental/util/platform.h is kind of a pain, so we move move the prototypes for commonly used functions out of there, into nng.h proper.
* Incorrect doc section.Garrett D'Amore2023-12-30
|
* fixes #1746 Create a new socket:// transport for socketpair() based connectionsGarrett D'Amore2023-12-29
This transport only listens, and creates connections when the application calls setopt on the lister with NNG_OPT_SOCKET_FD, to pass a file descriptor. The FD is turned into an nng_stream, and utilized for SP. The protocol over the descriptor is identical to the TCP protocol (not the IPC protocol). The options for peer information are borrowed from the IPC transport, as they may be useful for these purposes. This includes a test suite and full documentation.