Changes in uspace/srv/net/netif/dp8390/dp8390.h [aadf01e:aa8267c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/netif/dp8390/dp8390.h
raadf01e raa8267c 255 255 struct iovec_dat; 256 256 //struct iovec_dat_s; 257 _PROTOTYPE( typedef void (*dp_initf_t), (struct dpeth *dep) );258 _PROTOTYPE( typedef void (*dp_stopf_t), (struct dpeth *dep) );259 _PROTOTYPE( typedef void (*dp_user2nicf_t), (struct dpeth *dep,257 _PROTOTYPE( typedef void (*dp_initf_t), (struct dpeth *dep) ); 258 _PROTOTYPE( typedef void (*dp_stopf_t), (struct dpeth *dep) ); 259 _PROTOTYPE( typedef void (*dp_user2nicf_t), (struct dpeth *dep, 260 260 struct iovec_dat *iovp, vir_bytes offset, 261 int nic_addr, vir_bytes count) 262 //_PROTOTYPE( typedef void (*dp_user2nicf_s_t), (struct dpeth *dep,261 int nic_addr, vir_bytes count) ); 262 //_PROTOTYPE( typedef void (*dp_user2nicf_s_t), (struct dpeth *dep, 263 263 // struct iovec_dat_s *iovp, vir_bytes offset, 264 264 // int nic_addr, vir_bytes count) ); 265 _PROTOTYPE( typedef void (*dp_nic2userf_t), (struct dpeth *dep,265 _PROTOTYPE( typedef void (*dp_nic2userf_t), (struct dpeth *dep, 266 266 int nic_addr, struct iovec_dat *iovp, 267 vir_bytes offset, vir_bytes count) 268 //_PROTOTYPE( typedef void (*dp_nic2userf_s_t), (struct dpeth *dep,267 vir_bytes offset, vir_bytes count) ); 268 //_PROTOTYPE( typedef void (*dp_nic2userf_s_t), (struct dpeth *dep, 269 269 // int nic_addr, struct iovec_dat_s *iovp, 270 270 // vir_bytes offset, vir_bytes count) ); 271 271 //#if 0 272 //_PROTOTYPE( typedef void (*dp_getheaderf_t), (struct dpeth *dep,272 //_PROTOTYPE( typedef void (*dp_getheaderf_t), (struct dpeth *dep, 273 273 // int page, struct dp_rcvhdr *h, u16_t *eth_type) ); 274 274 //#endif 275 _PROTOTYPE( typedef void (*dp_getblock_t), (struct dpeth *dep,275 _PROTOTYPE( typedef void (*dp_getblock_t), (struct dpeth *dep, 276 276 int page, size_t offset, size_t size, void *dst) ); 277 277 … … 313 313 /** Outgoing packets queue. 314 314 */ 315 packet_t 315 packet_t packet_queue; 316 316 /** Outgoing packets count. 317 317 */ 318 int 318 int packet_count; 319 319 320 320 /** Received packets queue. 321 321 */ 322 packet_t 322 packet_t received_queue; 323 323 /** Received packets count. 324 324 */ 325 int 325 int received_count; 326 326 327 327 /* The de_base_port field is the starting point of the probe.
Note:
See TracChangeset
for help on using the changeset viewer.