aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/nng/nng.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/nng/nng.h b/include/nng/nng.h
index b3c5ae14..6f041fcb 100644
--- a/include/nng/nng.h
+++ b/include/nng/nng.h
@@ -442,7 +442,7 @@ NNG_DECL const char *nng_strerror(nng_err);
// received the data. The return value will be zero to indicate that the
// socket has accepted the entire data for send, or an errno to indicate
// failure. The flags may include NNG_FLAG_NONBLOCK.
-NNG_DECL int nng_send(nng_socket, void *, size_t, int);
+NNG_DECL int nng_send(nng_socket, const void *, size_t, int);
// nng_recv receives message data into the socket, up to the supplied size.
// The actual size of the message data will be written to the value pointed
@@ -1292,7 +1292,7 @@ typedef struct {
// only the first call can contain a non-NULL params. If already
// initialized with non-NULL params, will return NNG_EALREADY.
// Applications should *not* call a matching nng_fini() in that case.
-NNG_DECL nng_err nng_init(nng_init_params *parms);
+NNG_DECL nng_err nng_init(const nng_init_params *parms);
// nng_fini is used to terminate the library, freeing certain global resources.
// Each call to nng_fini is paired to a call to nng_init. The last such