aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2024-09-07 13:35:25 -0700
committerGarrett D'Amore <garrett@damore.org>2024-10-06 14:06:29 -0700
commitbdbc936ee4e1a08125be911b1ba11f8865ab4239 (patch)
treec0e106ff5ee848984ba7e5809e747ba19f9c642c /include
parent03b701cd70bb161fdf5adbf83c5476bd12a79dc8 (diff)
downloadnng-bdbc936ee4e1a08125be911b1ba11f8865ab4239.tar.gz
nng-bdbc936ee4e1a08125be911b1ba11f8865ab4239.tar.bz2
nng-bdbc936ee4e1a08125be911b1ba11f8865ab4239.zip
Remove deprecated `nng_pipe_getopt` and friends.
Diffstat (limited to 'include')
-rw-r--r--include/nng/nng.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/nng/nng.h b/include/nng/nng.h
index a6edf017..3826e8e1 100644
--- a/include/nng/nng.h
+++ b/include/nng/nng.h
@@ -1420,25 +1420,6 @@ NNG_DECL int nng_listener_setopt_ptr(
NNG_DECL int nng_listener_setopt_string(
nng_listener, const char *, const char *) NNG_DEPRECATED;
-// Pipe options. Use nng_pipe_get instead.
-NNG_DECL int nng_pipe_getopt(
- nng_pipe, const char *, void *, size_t *) NNG_DEPRECATED;
-NNG_DECL int nng_pipe_getopt_bool(
- nng_pipe, const char *, bool *) NNG_DEPRECATED;
-NNG_DECL int nng_pipe_getopt_int(nng_pipe, const char *, int *) NNG_DEPRECATED;
-NNG_DECL int nng_pipe_getopt_ms(
- nng_pipe, const char *, nng_duration *) NNG_DEPRECATED;
-NNG_DECL int nng_pipe_getopt_size(
- nng_pipe, const char *, size_t *) NNG_DEPRECATED;
-NNG_DECL int nng_pipe_getopt_sockaddr(
- nng_pipe, const char *, nng_sockaddr *) NNG_DEPRECATED;
-NNG_DECL int nng_pipe_getopt_uint64(
- nng_pipe, const char *, uint64_t *) NNG_DEPRECATED;
-NNG_DECL int nng_pipe_getopt_ptr(
- nng_pipe, const char *, void **) NNG_DEPRECATED;
-NNG_DECL int nng_pipe_getopt_string(
- nng_pipe, const char *, char **) NNG_DEPRECATED;
-
// nng_closeall closes all open sockets. Do not call this from
// a library; it will affect all sockets.
NNG_DECL void nng_closeall(void) NNG_DEPRECATED;