dsr-dev.h
来自「Ad-hoc网络路由协议DSR的linux下实现」· C头文件 代码 · 共 26 行
H
26 行
/* 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, <erikn@it.uu.se> */#ifndef _DSR_DEV_H#define _DSR_DEV_H#include <linux/netdevice.h>#include <linux/init.h>#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
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?