/******************************************************************************* ** ** Cabletron Systems Incorporated ** Post Office Box 5005 ** Rochester, NH 03866-5005 ** (c) Copyright Cabletron Systems Inc. 1999 ** ** Workfile: %M% ** Logfile: %P% ** Original Author: Todd Crowley ** SCCS Delta ID: %I% ** Last Delta Date/Time: %G% %U% ** *******************************************************************************/ #ifndef LFAPVR_H_ #define LFAPVR_H_ #include "Lfap.h" #ifdef __cplusplus extern "C" { #endif #define LFAP_VR_INVALID 0 #define LFAP_VR_VALID 1 typedef struct lfap_vr_msg { LFAPBuffer lfap_msg; LFAPHeader hdr; } LFAP_VR; void resetLfapVR (LFAP_VR* vr); void initLfapVR (LFAP_VR* vr); int initRcvdLfapVR (LFAP_VR* vr, void* buf, int buf_len); int encodeCompletedLfapVR (LFAP_VR* vr); lfapui8_t verifyLfapVR (LFAP_VR* vr); #ifdef __cplusplus } #endif #endif /* LFAPVR_H_ */