Changeset 71b00dcc in mainline for uspace/srv/net/netif/dp8390/dp8390.h
- Timestamp:
- 2010-03-07T22:51:38Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60ab6c3
- Parents:
- b5cbff4 (diff), 31c80a5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/netif/dp8390/dp8390.h
rb5cbff4 r71b00dcc 255 255 struct iovec_dat; 256 256 //struct iovec_dat_s; 257 _PROTOTYPE( 258 _PROTOTYPE( 259 _PROTOTYPE( 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( 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( 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( 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( 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( 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.