zeek/src/XDR.h
2011-08-04 15:21:18 -05:00

19 lines
648 B
C

// See the file "COPYING" in the main distribution directory for copyright.
#ifndef xdr_h
#define xdr_h
#include <sys/types.h>
#include <netinet/in.h>
#include "util.h"
extern uint32 extract_XDR_uint32(const u_char*& buf, int& len);
extern uint64 extract_XDR_uint64(const u_char*& buf, int& len);
extern double extract_XDR_time(const u_char*& buf, int& len);
extern const u_char* extract_XDR_opaque(const u_char*& buf, int& len,
int& n, int max_len=8192, bool short_buf_ok=false);
extern const u_char* extract_XDR_opaque_fixed(const u_char*& buf, int& len, int n);
extern uint32 skip_XDR_opaque_auth(const u_char*& buf, int& len);
#endif