Changeset 87b490e3 in mainline for uspace/lib/pcap/src/pcapdump_srv.c


Ignore:
Timestamp:
2024-12-13T08:44:05Z (10 months ago)
Author:
Nataliia Korop <n.corop08@…>
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)
Message:

docs comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/pcap/src/pcapdump_srv.c

    rfb31682 r87b490e3  
    4747#include "pcapdump_ipc.h"
    4848
     49/** Start dumping.
     50 *      @param icall    IPC call with request to start.
     51 *  @param dumper       Dumping interface of the driver.
     52 */
    4953static void pcapdump_start_srv(ipc_call_t *icall, pcap_dumper_t *dumper)
    5054{
     
    8488}
    8589
     90/** Stop dumping
     91 *      @param icall    IPC call with request to stop.
     92 *  @param dumper       Dumping interface of the driver.
     93 */
    8694static void pcapdump_stop_srv(ipc_call_t *icall, pcap_dumper_t *dumper)
    8795{
     
    9098}
    9199
     100/** Get number of accessibke writer operations.
     101 *      @param icall    IPC call with request to get number of accessible writer operations.
     102 */
    92103static void pcapdump_get_ops_num_srv(ipc_call_t *icall)
    93104{
     
    99110}
    100111
     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 */
    101116void pcapdump_conn(ipc_call_t *icall, void *arg)
    102117{
Note: See TracChangeset for help on using the changeset viewer.