| 1234567891011121314151617181920212223242526272829303132333435 | // fns.h: function prototypes// aoe.cvoid	aoe(void);void	aoeinit(void);void	aoequery(void);void	aoeconfig(void);void	aoead(int);void	aoeflush(int, int);void	aoetick(void);void	aoerequest(int, int, vlong, int, uchar *, int);int	maskok(uchar *);int	rrok(uchar *);// ata.cvoid	atainit(void);int	atacmd(Ataregs *, uchar *, int, int);// bpf.cvoid *	create_bpf_program(int, int);void	free_bpf_program(void *);// os specificint	dial(char *, int);int	getea(int, char *, uchar *);int	putsec(int, uchar *, vlong, int);int	getsec(int, uchar *, vlong, int);int	putpkt(int, uchar *, int);int	getpkt(int, uchar *, int);vlong	getsize(int);int	getmtu(int, char *);
 |