dsr-rtc.h
来自「LINUX下的mesh路由协议dsr的源代码包」· C头文件 代码 · 共 28 行
H
28 行
/* 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_RTC_H#define _DSR_RTC_H#ifdef __KERNEL__#include <linux/in.h>#include <linux/types.h>#define DSR_RTC_PROC_NAME "dsr_rtc"#endif#include "dsr-srt.h"/* DSR route cache API */struct dsr_srt *dsr_rtc_find(struct in_addr src, struct in_addr dst);int dsr_rtc_add(struct dsr_srt *srt, unsigned long time, unsigned short flags);int dsr_rtc_del(struct in_addr src, struct in_addr dst);void dsr_rtc_flush(void);#endif /* _DSR_RTC_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?