diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-08-10 18:14:27 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-08-10 22:47:43 -0700 |
| commit | dbbee1a3ea7fbd26c528eb96ebe0dbfd7075e292 (patch) | |
| tree | c5b94f14fd95725077d2b4e9cd0d3d4d166aa7e2 /src/core/socket.c | |
| parent | 34ceda3c2dd4990d15e0341e86861dd291003f63 (diff) | |
| download | nng-dbbee1a3ea7fbd26c528eb96ebe0dbfd7075e292.tar.gz nng-dbbee1a3ea7fbd26c528eb96ebe0dbfd7075e292.tar.bz2 nng-dbbee1a3ea7fbd26c528eb96ebe0dbfd7075e292.zip | |
Unify the msg API.
This makes the operations that work on headers start with
nni_msg_header or nng_msg_header. It also renames _trunc to
_chop (same strlen as _trim), and renames prepend to insert.
We add a shorthand for clearing message content, and make
better use of the endian safe 32-bit accessors too.
This also fixes a bug in inserting large headers into messages.
A test suite for message handling is included.
Diffstat (limited to 'src/core/socket.c')
| -rw-r--r-- | src/core/socket.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/socket.c b/src/core/socket.c index 46ed2100..711cd57a 100644 --- a/src/core/socket.c +++ b/src/core/socket.c @@ -411,7 +411,6 @@ nni_sock_open(nni_sock **sockp, const nni_proto *proto) { nni_sock *s = NULL; int rv; - uint32_t sockid; if (proto->proto_version != NNI_PROTOCOL_VERSION) { // unsupported protocol version @@ -603,7 +602,6 @@ void nni_sock_closeall(void) { nni_sock *s; - uint32_t id; for (;;) { nni_mtx_lock(&nni_sock_lk); |
