Sponsor:

Your company here, and a link to your site. Click to find out more.

nn_reallocmsg - Man Page

reallocate a message

Synopsis

#include <nanomsg/nn.h>

void *nn_reallocmsg (void *msg, size_t size);

Description

Reallocate a message previously allocated by nn_allocmsg(3) or received from a peer using NN_MSG mechanism.

Note that as with the standard realloc, the operation may involve copying the data in the buffer.

Return Value

If the function succeeds pointer to newly allocated buffer is returned. Otherwise, NULL is returned and errno is set to to one of the values defined below.

Errors

ENOMEM

Not enough memory to allocate the message.

Example

void *buf = nn_allocmsg (12, 0);
void *newbuf = nn_reallocmsg (buf, 20);
nn_freemsg (newbuf);

See Also

nn_allocmsg(3) nn_freemsg(3) nanomsg(7)

Authors

Martin Sustrik

Referenced By

nanomsg(7), nn_allocmsg(3), nn_freemsg(3).

2024-01-25 nanomsg 1.1.5