Changeset 87b490e3 in mainline for uspace/lib/pcap/src/pcapdump_srv.c
- Timestamp:
- 2024-12-13T08:44:05Z (10 months ago)
- Children:
- 420b13d
- Parents:
- fb31682
- git-author:
- Nataliia Korop <n.corop08@…> (2024-11-30 19:08:32)
- git-committer:
- Nataliia Korop <n.corop08@…> (2024-12-13 08:44:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/pcap/src/pcapdump_srv.c
rfb31682 r87b490e3 47 47 #include "pcapdump_ipc.h" 48 48 49 /** Start dumping. 50 * @param icall IPC call with request to start. 51 * @param dumper Dumping interface of the driver. 52 */ 49 53 static void pcapdump_start_srv(ipc_call_t *icall, pcap_dumper_t *dumper) 50 54 { … … 84 88 } 85 89 90 /** Stop dumping 91 * @param icall IPC call with request to stop. 92 * @param dumper Dumping interface of the driver. 93 */ 86 94 static void pcapdump_stop_srv(ipc_call_t *icall, pcap_dumper_t *dumper) 87 95 { … … 90 98 } 91 99 100 /** Get number of accessibke writer operations. 101 * @param icall IPC call with request to get number of accessible writer operations. 102 */ 92 103 static void pcapdump_get_ops_num_srv(ipc_call_t *icall) 93 104 { … … 99 110 } 100 111 112 /** Callback connection function. Accepts requests and processes them. 113 * @param icall IPC call with request. 114 * @param arg Dumping interface of the driver. 115 */ 101 116 void pcapdump_conn(ipc_call_t *icall, void *arg) 102 117 {
Note:
See TracChangeset
for help on using the changeset viewer.