diff options
| author | Garrett D'Amore <garrett@damore.org> | 2025-01-03 08:21:00 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2025-01-03 08:38:19 -0800 |
| commit | cefc6e1995f7f8e53e16db745eac7a86c2ebffd3 (patch) | |
| tree | 0ac186f87a1d33b3b4090ea1c1dd51c85553b5f3 /src/core/options.h | |
| parent | fb03061dfd20f0d85f73d22380acf5b8f88cf6b3 (diff) | |
| download | nng-cefc6e1995f7f8e53e16db745eac7a86c2ebffd3.tar.gz nng-cefc6e1995f7f8e53e16db745eac7a86c2ebffd3.tar.bz2 nng-cefc6e1995f7f8e53e16db745eac7a86c2ebffd3.zip | |
api: drop the 64-bit option accessors (no more 64-bit option types)
Diffstat (limited to 'src/core/options.h')
| -rw-r--r-- | src/core/options.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/options.h b/src/core/options.h index 89006630..8aa7fce7 100644 --- a/src/core/options.h +++ b/src/core/options.h @@ -1,5 +1,5 @@ // -// Copyright 2018 Staysail Systems, Inc. <info@staysail.tech> +// Copyright 2025 Staysail Systems, Inc. <info@staysail.tech> // Copyright 2018 Capitar IT Group BV <info@capitar.com> // Copyright 2018 Devolutions <info@devolutions.net> // @@ -33,7 +33,6 @@ extern int nni_copyin_size( size_t *, const void *, size_t, size_t, size_t, nni_type); extern int nni_copyin_str(char *, const void *, size_t, nni_type); extern int nni_copyin_ptr(void **, const void *, size_t, nni_type); -extern int nni_copyin_u64(uint64_t *, const void *, size_t, nni_type); extern int nni_copyin_sockaddr(nng_sockaddr *, const void *, nni_type); // nni_copyout_xxx copies out a type of the named value. It assumes that @@ -46,7 +45,6 @@ extern int nni_copyout_ptr(void *, void *, size_t *, nni_type); extern int nni_copyout_size(size_t, void *, size_t *, nni_type); extern int nni_copyout_sockaddr( const nng_sockaddr *, void *, size_t *, nni_type); -extern int nni_copyout_u64(uint64_t, void *, size_t *, nni_type); // nni_copyout_str copies out a string. If the type is NNI_TYPE_STRING, // then it passes through a pointer, created by nni_strdup(). |
