Files
FireBee_SVN/BaS_gcc/include/net.h
2013-12-24 10:41:43 +00:00

33 lines
634 B
C

/*
* File: net.h
* Purpose: Network definitions and prototypes for BaS.
*
* Notes:
*/
#ifndef _NET_H
#define _NET_H
/********************************************************************/
/*
* Include information and prototypes for all protocols
*/
#include "eth.h"
#include "nbuf.h"
#include "nif.h"
#include "ip.h"
#include "icmp.h"
#include "arp.h"
#include "udp.h"
#include "tftp.h"
/********************************************************************/
extern int net_init(void);
/********************************************************************/
#endif /* _NET_H */