Renamed net/interface.c and include/gpxe/interface.h to net/tcpip_if.c and include/gpxe/tcpip_if.h respectively. Made changes in the other files.

This commit is contained in:
Nikhil Chandru Rao
2006-06-28 15:43:08 +00:00
parent 291f072b82
commit c9ea710930
6 changed files with 273 additions and 15 deletions

View File

@@ -32,6 +32,7 @@ struct ipv4_pseudo_header {
struct pk_buff;
struct net_device;
struct net_protocol;
struct tcpip_protocol;
extern struct net_protocol ipv4_protocol;
@@ -41,6 +42,7 @@ extern int add_ipv4_address ( struct net_device *netdev,
extern void del_ipv4_address ( struct net_device *netdev );
extern int ipv4_uip_tx ( struct pk_buff *pkb );
extern int ipv4_tx ( struct pk_buff *pkb, uint16_t trans_proto, struct in_addr *dest );
extern int ipv4_tx ( struct pk_buff *pkb, struct tcpip_protocol *tcpip,
struct in_addr *dest );
#endif /* _GPXE_IP_H */