//
// Name:	fpxReads.h
// History:
// o June 20, 2005:  John DeHart, creation //

#define fpxReads_ID	987;

struct fpxReads_instance {	// fpxReads instance
  struct rp_instance rootinstance;	// base class part
  int pkt_count;			// instance specific data
};

void fpxReads_init_class();		// function prototypes
struct rp_class *fpxReads_get_class();
struct rp_instance *fpxReads_create_instance(struct rp_class *, u_int32_t);
void fpxReads_handle_packet(struct rp_instance *, void *);
void fpxReads_free_instance(struct rp_instance *);
void fpxReads_bind_instance(struct rp_instance *);
void fpxReads_unbind_instance(struct rp_instance *);
int  fpxReads_handle_msg(struct rp_instance *, void *, u_int8_t,
						u_int8_t, u_int8_t *);
#ifdef PLUGIN_DEBUG
int fpxReads  (struct lkm_table *, int, int);
#else
int fpxReads  (struct lkm_table *, int, int, struct kernel_plugin_fct_struct *);
#endif
int fpxReads_load(struct lkm_table *, int);
int fpxReads_unload(struct lkm_table *, int);

