summaryrefslogtreecommitdiff
path: root/include/net/pcap.h
blob: 512ba982f10476f1d74ed83ee4caa6e3c9008e1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright 2019
 * Ramon Fried <rfried.dev@gmail.com>
 */

/**
 * pcap_init() - Initialize PCAP memory buffer
 *
 * @paddr	physicaly memory address to store buffer
 * @size	maximum size of capture file in memory
 *
 * @return	0 on success, -ERROR on error
 */
int pcap_init(phys_addr_t paddr, unsigned long size);

/**
 * pcap_start_stop() - start / stop pcap capture
 *
 * @start	if true, start capture if false stop capture
 *
 * @return	0 on success, -ERROR on error
 */
int pcap_start_stop(bool start);

/**
 * pcap_clear() - clear pcap capture buffer and statistics
 *
 * @return	0 on success, -ERROR on error
 */
int pcap_clear(void);

/**
 * pcap_print_status() - print status of pcap capture
 *
 * @return	0 on success, -ERROR on error
 */
int pcap_print_status(void);

/**
 * pcap_active() - check if pcap is enabled
 *
 * @return	TRUE if active, FALSE if not.
 */
bool pcap_active(void);

/**
 * pcap_post() - Post a packet to PCAP file
 *
 * @packet:	packet to post
 * @len:	packet length in bytes
 * @outgoing	packet direction (outgoing/incoming)
 * @return	0 on success, -ERROR on error
 */
int pcap_post(const void *packet, size_t len, bool outgoing);