Changeset 3a4c6d9 in mainline for uspace/lib/nic/include
- Timestamp:
- 2025-11-14T16:58:23Z (8 weeks ago)
- Branches:
- master
- Children:
- 1ec732a, 43ef144, 7101dfb, e998d98
- Parents:
- d101368
- git-author:
- Nataliia Korop <n.corop08@…> (2025-11-14 16:57:02)
- git-committer:
- Jiri Svoboda <jiri@…> (2025-11-14 16:58:23)
- Location:
- uspace/lib/nic/include
- Files:
-
- 3 edited
-
nic.h (modified) (2 diffs)
-
nic_driver.h (modified) (2 diffs)
-
nic_impl.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/nic/include/nic.h
rd101368 r3a4c6d9 44 44 #include <device/hw_res_parsed.h> 45 45 #include <ops/nic.h> 46 #include <pcap_dumper.h> 46 47 47 48 #define DEVICE_CATEGORY_NIC "nic" … … 278 279 extern void nic_sw_period_stop(nic_t *); 279 280 281 /* pcapdump interface */ 282 extern pcap_dumper_t *nic_get_pcap_dumper(nic_t *); 283 284 extern errno_t nic_fun_add_to_cats(ddf_fun_t *fun); 285 280 286 #endif // __NIC_H__ 281 287 -
uspace/lib/nic/include/nic_driver.h
rd101368 r3a4c6d9 46 46 #include <nic/nic.h> 47 47 #include <async.h> 48 #include <pcapdump_srv.h> 48 49 49 50 #include "nic.h" … … 195 196 */ 196 197 poll_request_handler on_poll_request; 198 199 /** Packets dumper. */ 200 pcap_dumper_t dumper; 201 197 202 /** Data specific for particular driver */ 198 203 void *specific; -
uspace/lib/nic/include/nic_impl.h
rd101368 r3a4c6d9 87 87 extern void nic_close_impl(ddf_fun_t *fun); 88 88 89 extern void nic_device_added_impl(ddf_dev_t *dev);90 91 89 #endif 92 90
Note:
See TracChangeset
for help on using the changeset viewer.
