summaryrefslogtreecommitdiff
path: root/byteorder.h
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2007-04-20 08:16:59 +0000
committerWayne Davison <wayned@samba.org>2007-04-20 08:16:59 +0000
commit1c60d219472b3de0080cda807b014d011e3b5ccb (patch)
tree7fb26459c0d6e17201ad999c009470c3868c684a /byteorder.h
parent473feecff3c3b695afc43b0fee4b84c6dcfeeedc (diff)
downloadrsync-1c60d219472b3de0080cda807b014d011e3b5ccb.tar.gz
Got rid of the NVAL*() defines.
Diffstat (limited to 'byteorder.h')
-rw-r--r--byteorder.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/byteorder.h b/byteorder.h
index 2261e47d..0ce87a24 100644
--- a/byteorder.h
+++ b/byteorder.h
@@ -34,17 +34,6 @@
#define UVAL(buf,pos) ((uint32)CVAL(buf,pos))
#define SCVAL(buf,pos,val) (CVAL(buf,pos) = (val))
-/* Our 64-bit numbers are sent in MSB-first order so that we can use
- * the highest bits to indicate the number of bytes sent. */
-#define NVAL1(b,m) (UVAL(b,0)&~(uint32)(m))
-#define NVAL2(b,m) (NVAL1(b,m)<<8|UVAL(b,1))
-#define NVAL3(b,m) (NVAL2(b,m)<<8|UVAL(b,2))
-#define NVAL4(b,m) (NVAL3(b,m)<<8|UVAL(b,3))
-#define NVAL5(b,m) ((int64)NVAL4(b,m)<<8|UVAL(b,4))
-#define NVAL6(b,m) (NVAL5(b,m)<<8|UVAL(b,5))
-#define NVAL7(b,m) (NVAL6(b,m)<<8|UVAL(b,6))
-#define NVAL8(b,m) (NVAL7(b,m)<<8|UVAL(b,7))
-
#if CAREFUL_ALIGNMENT
#define PVAL(buf,pos) (UVAL(buf,pos)|UVAL(buf,(pos)+1)<<8)
#define IVAL(buf,pos) (PVAL(buf,pos)|PVAL(buf,(pos)+2)<<16)