aboutsummaryrefslogtreecommitdiff
path: root/src/core/transport.h
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2018-01-04 20:11:38 -0800
committerGarrett D'Amore <garrett@damore.org>2018-01-05 11:20:50 -0800
commit224dae56a379aa309fca261d61e7e356b14a536f (patch)
tree8194d33029d3595457d424a0f2f57fe2d2139199 /src/core/transport.h
parent2ea7ae1ae5755ab72833fdea0dcf8e13e4d91d0d (diff)
downloadnng-224dae56a379aa309fca261d61e7e356b14a536f.tar.gz
nng-224dae56a379aa309fca261d61e7e356b14a536f.tar.bz2
nng-224dae56a379aa309fca261d61e7e356b14a536f.zip
Fix some more leaks, add a generic URL parser.
Diffstat (limited to 'src/core/transport.h')
-rw-r--r--src/core/transport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/transport.h b/src/core/transport.h
index e8a1f620..3098bd1a 100644
--- a/src/core/transport.h
+++ b/src/core/transport.h
@@ -13,7 +13,6 @@
// Transport implementation details. Transports must implement the
// interfaces in this file.
-
struct nni_tran {
// tran_version is the version of the transport ops that this
// transport implements. We only bother to version the main
@@ -164,6 +163,7 @@ struct nni_tran_pipe {
};
// Utility for transports.
+
extern int nni_tran_parse_host_port(const char *, char **, char **);
// These APIs are used by the framework internally, and not for use by