From 98f23e10cc1d65da6a7f6c7e4f5665d7afc27a86 Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Thu, 15 Mar 2018 08:40:17 -0700 Subject: fixes #286 nng_pair0_open (and all others) need man page fixes #279 consider restructuring man sections This represents a rather significant rework, and major editing effort, for the entire set of manual pages. All of the pages now have a section number in their filename; this assists in some other tooling, particularly ebook generation as every link needs to be programmatically modified when combined into an ebook. Section 5 is introduced, and populated with pages for the main types, and all options are now documented. Numerous errors have been corrected, including rewriting certain portions such as the header section of the surveyor protocol. Much work has been done to facilitate index generation, although certainly more work remains here. Every internal link within these pages now resolves; there are no more dead links. (This is required to generate Kindle format books.) --- docs/man/nng_compat.3compat.adoc | 96 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 docs/man/nng_compat.3compat.adoc (limited to 'docs/man/nng_compat.3compat.adoc') diff --git a/docs/man/nng_compat.3compat.adoc b/docs/man/nng_compat.3compat.adoc new file mode 100644 index 00000000..cc6271f4 --- /dev/null +++ b/docs/man/nng_compat.3compat.adoc @@ -0,0 +1,96 @@ += nng_compat(3compat) +// +// Copyright 2018 Staysail Systems, Inc. +// Copyright 2018 Capitar IT Group BV +// +// This document is supplied under the terms of the MIT License, a +// copy of which should be located in the distribution where this +// file was obtained (LICENSE.txt). A copy of the license may also be +// found online at https://opensource.org/licenses/MIT. +// + +== NAME + +nng_compat - compatibility with nanomsg 1.0 + +== SYNOPSIS + +[source, c] +---- +#include +---- + +== DESCRIPTION + +The <> library provides source-level compatibility for +most _nanomsg_ 1.0 applications. + +IMPORTANT: This is intended to faciliate converting legacy applications to +use the _nng_ library. +New applications shoud not use the newer <> API instead. + +Applications making use of this ((compatibility layer)) take care +to link with <> instead of _libnn_. + +NOTE: Some capabilities, protocols, and transports, will not be accessible +using this API, as the compatible API has no provision for expression +of certain concepts introduced in the newer <> API. + +NOTE: While reasonable efforts have been made to provide for compatibility, +some things may behave differently, and some less common parts of the +_nanomsg_ 1.0 API are not supported at this time, including certain +options and the statistics API. + +TIP: If an installation of the older _nanomsg_ library is present on +the build system, it may be necessary to provide a different search +path for header files to ensure that the compatibility definitions are +used in compilation. + +=== Functions + +The following functions are provided: + +// Add links for the following as they are written. +|=== +|`nn_socket()`|create a socket +|`nn_getsockopt()`|get socket option +|`nn_setsockopt()`|set socket option +|`nn_bind()`|accept connections from remote peers +|`nn_connect()`|connect to remote peer +|`nn_send()`|send data +|`nn_recv()`|receive data +|`nn_shutdown()`|shut down endpoint +|`nn_close()`|close socket +|`nn_poll()`|poll sockets +|`nn_device()`|create forwarding device +|`nn_recvmsg()`|receive message +|`nn_sendmsg()`|send message +|`nn_get_statistic()`|get statistic (stub) +|`nn_allocmsg()`|allocate message +|`nn_reallocmsg()`|reallocate message +|`nn_freemsg()`|free message +|`nn_errno()`|return most recent error +|`nn_strerror()`|return message for error +|`nn_term()`|terminate library +|=== + +NOTE: Documentation for the compatibility functions will be +supplied here later. +In the meantime it can be found online at the +http://nanomsg.org[nanomsg site]. + +// === Common Functions +// +// The following common functions exist in _libnng_. +// +// |=== +// |<>|allocate memory +// |<>|free memory +// |<>|return an error description +// |<>|report library version +// |=== +// + +== SEE ALSO + +<> -- cgit v1.2.3-70-g09d2