isdntab.h
来自「一个网络流量分析的完整的程序」· C头文件 代码 · 共 15 行
H
15 行
struct isdntabent { char ifname[10]; unsigned int encap; struct isdntabent *next_entry;};struct isdntab { struct isdntabent *head; struct isdntabent *tail;};void add_isdn_entry(struct isdntab *list, char *ifname, int isdn_fd);struct isdntabent *isdn_table_lookup(struct isdntab *list, char *ifname, int isdn_fd);void destroy_isdn_table(struct isdntab *list);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?