aboutsummaryrefslogtreecommitdiff
path: root/src/nng.c
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2024-11-18 18:49:01 -0800
committerGarrett D'Amore <garrett@damore.org>2024-11-18 18:49:01 -0800
commitdd4695f9492b4f30978e9043d7d6925bfe15a715 (patch)
tree84569362574fabe4b984a82e3232e1b75397bb8f /src/nng.c
parentca6cfe359fa55a5a7f4b6ae73500ffd98e6ee968 (diff)
downloadnng-dd4695f9492b4f30978e9043d7d6925bfe15a715.tar.gz
nng-dd4695f9492b4f30978e9043d7d6925bfe15a715.tar.bz2
nng-dd4695f9492b4f30978e9043d7d6925bfe15a715.zip
Merge internal and external URL APIs. No need for
the separation of nni_url and nng_url.
Diffstat (limited to 'src/nng.c')
-rw-r--r--src/nng.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/nng.c b/src/nng.c
index dd8a98f1..9ed2a0ab 100644
--- a/src/nng.c
+++ b/src/nng.c
@@ -2020,30 +2020,6 @@ nng_aio_begin(nng_aio *aio)
return (true);
}
-int
-nng_url_parse(nng_url **result, const char *ustr)
-{
- return (nni_url_parse(result, ustr));
-}
-
-void
-nng_url_free(nng_url *url)
-{
- nni_url_free(url);
-}
-
-int
-nng_url_clone(nng_url **dstp, const nng_url *src)
-{
- return (nni_url_clone(dstp, src));
-}
-
-int
-nng_url_sprintf(char *buf, size_t bufsz, const nng_url *src)
-{
- return (nni_url_sprintf(buf, bufsz, src));
-}
-
#define xstr(a) str(a)
#define str(a) #a