david/ipxe
david
/
ipxe
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/net/ipv6.c

25 lines
573 B
C
Raw Normal View History

2006-06-26 17:33:46 +02:00
#include <errno.h>
#include <gpxe/pkbuff.h>
#include <gpxe/netdevice.h>
#include <gpxe/in.h>
/**
* Transmit IP6 packets
*
* Placeholder to allow linking. The function should be placed in net/ipv6.c
*/
int ipv6_tx ( struct pk_buff *pkb __unused, uint16_t trans_proto __unused,
struct in6_addr *dest __unused) {
return -ENOSYS;
}
/**
* Process incoming IP6 packets
*
* Placeholder function. Should rewrite in net/ipv6.c
*/
void ipv6_rx ( struct pk_buff *pkb __unused,
struct net_device *netdev __unused,
const void *ll_source __unused ) {
}