diff options
| author | Garrett D'Amore <garrett@damore.org> | 2024-11-18 18:49:01 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2024-11-18 18:49:01 -0800 |
| commit | dd4695f9492b4f30978e9043d7d6925bfe15a715 (patch) | |
| tree | 84569362574fabe4b984a82e3232e1b75397bb8f /src/supplemental/http/http_server.c | |
| parent | ca6cfe359fa55a5a7f4b6ae73500ffd98e6ee968 (diff) | |
| download | nng-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/supplemental/http/http_server.c')
| -rw-r--r-- | src/supplemental/http/http_server.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/supplemental/http/http_server.c b/src/supplemental/http/http_server.c index 03b3cf68..0f0d2d80 100644 --- a/src/supplemental/http/http_server.c +++ b/src/supplemental/http/http_server.c @@ -1,5 +1,5 @@ // -// Copyright 2023 Staysail Systems, Inc. <info@staysail.tech> +// Copyright 2024 Staysail Systems, Inc. <info@staysail.tech> // Copyright 2018 Capitar IT Group BV <info@capitar.com> // Copyright 2018 QXSoftware <lh563566994@126.com> // Copyright 2019 Devolutions <info@devolutions.net> @@ -932,7 +932,7 @@ http_server_fini(nni_http_server *s) } static int -http_server_init(nni_http_server **serverp, const nni_url *url) +http_server_init(nni_http_server **serverp, const nng_url *url) { nni_http_server *s; int rv; @@ -980,7 +980,7 @@ http_server_init(nni_http_server **serverp, const nni_url *url) } int -nni_http_server_init(nni_http_server **serverp, const nni_url *url) +nni_http_server_init(nni_http_server **serverp, const nng_url *url) { int rv; nni_http_server *s; |
