Changeset db96017 in mainline for uspace/srv/net/nil/nildummy/nildummy.h
- Timestamp:
- 2012-04-07T17:41:44Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b6913b7
- Parents:
- b69e4c0 (diff), 6bb169b5 (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
-
uspace/srv/net/nil/nildummy/nildummy.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/nil/nildummy/nildummy.h
rb69e4c0 rdb96017 1 1 /* 2 2 * Copyright (c) 2009 Lukas Mejdrech 3 * Copyright (c) 2011 Radim Vansa 3 4 * All rights reserved. 4 5 * … … 40 41 #include <async.h> 41 42 #include <fibril_synch.h> 43 #include <ipc/loc.h> 42 44 #include <ipc/services.h> 43 45 #include <net/device.h> 44 #include <adt/measured_strings.h>45 46 46 47 /** Type definition of the dummy nil global data. … … 76 77 struct nildummy_device { 77 78 /** Device identifier. */ 78 device_id_t device_id; 79 80 /** Device driver service. */ 81 services_t service; 82 79 nic_device_id_t device_id; 80 /** Device service ID. */ 81 service_id_t sid; 83 82 /** Driver session. */ 84 83 async_sess_t *sess; … … 88 87 89 88 /** Actual device hardware address. */ 90 measured_string_t *addr; 91 92 /** Actual device hardware address data. */ 93 uint8_t *addr_data; 89 nic_address_t addr; 90 /** Actual device hardware address length. */ 91 size_t addr_len; 94 92 }; 95 93
Note:
See TracChangeset
for help on using the changeset viewer.
