mirror of
https://passt.top/passt
synced 2024-11-06 04:41:10 +00:00
48582bf47f
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
15 lines
352 B
C
15 lines
352 B
C
/* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
* Copyright (c) 2021 Red Hat GmbH
|
|
* Author: Stefano Brivio <sbrivio@redhat.com>
|
|
*/
|
|
|
|
#ifndef PCAP_H
|
|
#define PCAP_H
|
|
|
|
void pcap(const char *pkt, size_t len);
|
|
void pcapm(const struct msghdr *mh);
|
|
void pcapmm(const struct mmsghdr *mmh, unsigned int vlen);
|
|
void pcap_init(struct ctx *c);
|
|
|
|
#endif /* PCAP_H */
|