nic.h
来自「linux下从网卡远程启动」· C头文件 代码 · 共 40 行
H
40 行
/* * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2, or (at * your option) any later version. */#ifndef NIC_H#define NIC_H#include "dev.h"/* * Structure returned from eth_probe and passed to other driver * functions. */struct nic{ struct dev dev; /* This must come first */ int (*poll)P((struct nic *)); void (*transmit)P((struct nic *, const char *d, unsigned int t, unsigned int s, const char *p)); int flags; /* driver specific flags */ struct rom_info *rom_info; /* -> rom_info from main */ unsigned char *node_addr; unsigned char *packet; unsigned int packetlen; void *priv_data; /* driver can hang private data here */};extern struct nic nic;extern int eth_probe(struct dev *dev);extern int eth_poll(void);extern void eth_transmit(const char *d, unsigned int t, unsigned int s, const void *p);extern void eth_disable(void);extern int eth_load_configuration(struct dev *dev);extern int eth_load(struct dev *dev);;#endif /* NIC_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?