aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2025-01-12 10:42:54 -0800
committerGarrett D'Amore <garrett@damore.org>2025-01-12 10:52:03 -0800
commitc34abc224e572b19fb5aa1b5afc8841705485d14 (patch)
tree82f6a936ae84fbece104dfb07b0b7c9ac0581dc8 /include
parente5721f6b4dd7e4084a14b6f2f38bfb3672796ac9 (diff)
downloadnng-c34abc224e572b19fb5aa1b5afc8841705485d14.tar.gz
nng-c34abc224e572b19fb5aa1b5afc8841705485d14.tar.bz2
nng-c34abc224e572b19fb5aa1b5afc8841705485d14.zip
http: remove unused nng_http_handler_get_data
The data is now passed directly to the handler function.
Diffstat (limited to 'include')
-rw-r--r--include/nng/http.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/nng/http.h b/include/nng/http.h
index d8654815..683e1f38 100644
--- a/include/nng/http.h
+++ b/include/nng/http.h
@@ -301,9 +301,6 @@ NNG_DECL void nng_http_handler_set_tree(nng_http_handler *);
NNG_DECL void nng_http_handler_set_data(
nng_http_handler *, void *, void (*)(void *));
-// nng_http_handler_get_data returns the data that was previously stored.
-NNG_DECL void *nng_http_handler_get_data(nng_http_handler *);
-
// nng_http_server is a handle to an HTTP server instance. Servers
// only serve a single port / address at this time.