ipcommon.h 514 B

12345678910111213141516171819202122
  1. /* net/atm/ipcommon.h - Common items for all ways of doing IP over ATM */
  2. /* Written 1996-2000 by Werner Almesberger, EPFL LRC/ICA */
  3. #ifndef NET_ATM_IPCOMMON_H
  4. #define NET_ATM_IPCOMMON_H
  5. #include <linux/string.h>
  6. #include <linux/skbuff.h>
  7. #include <linux/netdevice.h>
  8. #include <linux/atmdev.h>
  9. /*
  10. * Appends all skbs from "from" to "to". The operation is atomic with respect
  11. * to all other skb operations on "from" or "to".
  12. */
  13. void skb_migrate(struct sk_buff_head *from,struct sk_buff_head *to);
  14. #endif