Home | History | Annotate | Line # | Download | only in npftest
npftest.h revision 1.3.2.2
      1 /*	$NetBSD: npftest.h,v 1.3.2.2 2012/06/26 00:07:17 riz Exp $	*/
      2 
      3 /*
      4  * Public Domain.
      5  */
      6 
      7 #ifndef _NPF_TEST_H_
      8 #define _NPF_TEST_H_
      9 
     10 #include <stdint.h>
     11 #include <stdbool.h>
     12 
     13 int		rumpns_npf_test_load(const void *);
     14 int		rumpns_npf_test_handlepkt(const void *, size_t,
     15 		    unsigned, bool, int64_t *);
     16 
     17 bool		rumpns_npf_nbuf_test(bool);
     18 bool		rumpns_npf_processor_test(bool);
     19 bool		rumpns_npf_table_test(bool);
     20 bool		rumpns_npf_state_test(bool);
     21 
     22 int		process_stream(const char *, const char *, unsigned);
     23 
     24 #endif
     25