aboutsummaryrefslogtreecommitdiff
path: root/src/protocol/reqrep/rep.c
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-01-02 23:02:48 -0800
committerGarrett D'Amore <garrett@damore.org>2017-01-02 23:02:48 -0800
commit1c54bc5674a54d84112da5191c28a745d448c816 (patch)
tree18261f5dfc361ae0414c134b3fe84acbab0bb6ba /src/protocol/reqrep/rep.c
parent29678ad27eff07ef0c4726b01a07794f5bff1bc7 (diff)
downloadnng-1c54bc5674a54d84112da5191c28a745d448c816.tar.gz
nng-1c54bc5674a54d84112da5191c28a745d448c816.tar.bz2
nng-1c54bc5674a54d84112da5191c28a745d448c816.zip
Add NNI_GET32, NNI_PUT32 macros.
Diffstat (limited to 'src/protocol/reqrep/rep.c')
-rw-r--r--src/protocol/reqrep/rep.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/protocol/reqrep/rep.c b/src/protocol/reqrep/rep.c
index 96413523..ca59d799 100644
--- a/src/protocol/reqrep/rep.c
+++ b/src/protocol/reqrep/rep.c
@@ -185,13 +185,7 @@ nni_rep_topsender(void *arg)
nni_msg_free(msg);
continue;
}
- id = header[0];
- id <<= 8;
- id += header[1];
- id <<= 8;
- id += header[2];
- id <<= 8;
- id += header[3];
+ NNI_GET32(header, id);
nni_msg_trim_header(msg, 4);
nni_mtx_lock(&rep->mx);
@@ -256,10 +250,7 @@ nni_rep_pipe_recv(void *arg)
uint8_t idbuf[4];
uint32_t id = nni_pipe_id(pipe);
- idbuf[0] = (uint8_t) (id >> 24);
- idbuf[1] = (uint8_t) (id >> 16);
- idbuf[2] = (uint8_t) (id >> 8);
- idbuf[3] = (uint8_t) (id);
+ NNI_PUT32(idbuf, id);
for (;;) {
size_t len;