From 5dc7bc188217004cba84d530cbffc18b1df8a331 Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Tue, 24 Oct 2017 20:40:41 -0700 Subject: Various man page fixups, add inproc header. We added nng_inproc man page, and a header with an explicit registration method for it. We also fixed up the markup on several other pages, and corrected the include statements for nng_zerotier. --- src/transport/inproc/inproc.c | 7 +++++++ src/transport/inproc/inproc.h | 18 ++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 src/transport/inproc/inproc.h (limited to 'src/transport/inproc') diff --git a/src/transport/inproc/inproc.c b/src/transport/inproc/inproc.c index ae0972d5..c747f7dc 100644 --- a/src/transport/inproc/inproc.c +++ b/src/transport/inproc/inproc.c @@ -474,3 +474,10 @@ struct nni_tran nni_inproc_tran = { .tran_init = nni_inproc_init, .tran_fini = nni_inproc_fini, }; + + +int +nng_inproc_register(void) +{ + return (nni_tran_register(&nni_inproc_tran)); +} diff --git a/src/transport/inproc/inproc.h b/src/transport/inproc/inproc.h new file mode 100644 index 00000000..9538b06f --- /dev/null +++ b/src/transport/inproc/inproc.h @@ -0,0 +1,18 @@ +// +// Copyright 2017 Garrett D'Amore +// Copyright 2017 Capitar IT Group BV +// +// This software 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. +// + +#ifndef NNG_TRANSPORT_INPROC_INPROC_H +#define NNG_TRANSPORT_INPROC_INPROC_H + +// inproc transport. This is used for intra-process communication. + +extern int nng_inproc_register(void); + +#endif // NNG_TRANSPORT_INPROC_INPROC_H -- cgit v1.2.3-70-g09d2