www.pudn.com > dsr-uu-0.2.rar > dsr-dev.h
/* Copyright (C) Uppsala University * * This file is distributed under the terms of the GNU general Public * License (GPL), see the file LICENSE * * Author: Erik Nordström,*/ #ifndef _DSR_DEV_H #define _DSR_DEV_H #include #include #include "dsr.h" #include "dsr-pkt.h" #define DELIVER(pkt) dsr_dev_deliver(pkt) int dsr_dev_xmit(struct dsr_pkt *dp); int dsr_dev_deliver(struct dsr_pkt *dp); int __init dsr_dev_init(char *ifname); void __exit dsr_dev_cleanup(void); #endif