Fixing endianess error in XDR when data is not 4-byte aligned.

This commit is contained in:
Gregor Maier 2010-12-15 07:58:58 -08:00
parent 2ced4839e9
commit d6e6d6b650
2 changed files with 3 additions and 8 deletions

View file

@ -10,11 +10,6 @@
#include "util.h"
inline int XDR_aligned(const u_char* buf)
{
return (((unsigned long) buf) & 0x3) == 0;
}
extern uint32 extract_XDR_uint32(const u_char*& buf, int& len);
extern double extract_XDR_uint64_as_double(const u_char*& buf, int& len);
extern double extract_XDR_time(const u_char*& buf, int& len);