mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 11:38:20 +00:00
21 lines
698 B
C
21 lines
698 B
C
// $Id: XDR.h 6219 2008-10-01 05:39:07Z vern $
|
|
//
|
|
// 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
|