Changeset 85a4350 in mainline for uspace/lib/nic/include/nic_impl.h
- Timestamp:
- 2012-06-03T15:09:27Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 652b776
- Parents:
- 840e227 (diff), 3123d2a (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/lib/nic/include/nic_impl.h
r840e227 r85a4350 53 53 extern int nic_get_stats_impl(ddf_fun_t *dev_fun, nic_device_stats_t *stats); 54 54 extern int nic_unicast_get_mode_impl(ddf_fun_t *dev_fun, 55 55 nic_unicast_mode_t *, size_t, nic_address_t *, size_t *); 56 56 extern int nic_unicast_set_mode_impl(ddf_fun_t *dev_fun, 57 57 nic_unicast_mode_t, const nic_address_t *, size_t); 58 58 extern int nic_multicast_get_mode_impl(ddf_fun_t *dev_fun, 59 59 nic_multicast_mode_t *, size_t, nic_address_t *, size_t *); 60 60 extern int nic_multicast_set_mode_impl(ddf_fun_t *dev_fun, 61 61 nic_multicast_mode_t, const nic_address_t *, size_t); 62 62 extern int nic_broadcast_get_mode_impl(ddf_fun_t *, nic_broadcast_mode_t *); 63 63 extern int nic_broadcast_set_mode_impl(ddf_fun_t *, nic_broadcast_mode_t); 64 64 extern int nic_blocked_sources_get_impl(ddf_fun_t *, 65 65 size_t, nic_address_t *, size_t *); 66 66 extern int nic_blocked_sources_set_impl(ddf_fun_t *, const nic_address_t *, size_t); 67 67 extern int nic_vlan_get_mask_impl(ddf_fun_t *, nic_vlan_mask_t *); 68 68 extern int nic_vlan_set_mask_impl(ddf_fun_t *, const nic_vlan_mask_t *); 69 69 extern int nic_wol_virtue_add_impl(ddf_fun_t *dev_fun, nic_wv_type_t type, 70 70 const void *data, size_t length, nic_wv_id_t *new_id); 71 71 extern int nic_wol_virtue_remove_impl(ddf_fun_t *dev_fun, nic_wv_id_t id); 72 72 extern int nic_wol_virtue_probe_impl(ddf_fun_t *dev_fun, nic_wv_id_t id, 73 73 nic_wv_type_t *type, size_t max_length, void *data, size_t *length); 74 74 extern int nic_wol_virtue_list_impl(ddf_fun_t *dev_fun, nic_wv_type_t type, 75 75 size_t max_count, nic_wv_id_t *id_list, size_t *id_count); 76 76 extern int nic_wol_virtue_get_caps_impl(ddf_fun_t *, nic_wv_type_t, int *); 77 77 extern int nic_poll_get_mode_impl(ddf_fun_t *, 78 78 nic_poll_mode_t *, struct timeval *); 79 79 extern int nic_poll_set_mode_impl(ddf_fun_t *, 80 80 nic_poll_mode_t, const struct timeval *); 81 81 extern int nic_poll_now_impl(ddf_fun_t *); 82 82
Note:
See TracChangeset
for help on using the changeset viewer.