This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
stellar-stellar/src/packet/packet_dump.h

18 lines
269 B
C
Raw Normal View History

2024-07-01 15:51:36 +08:00
#pragma once
#ifdef __cplusplus
extern "C"
{
#endif
#include <stdint.h>
// return 0: success
// return -1: failed
int packet_dump_pcap(const struct packet *pkt, const char *file);
void packet_dump_hex(const struct packet *pkt, int fd);
2024-07-01 15:51:36 +08:00
#ifdef __cplusplus
}
#endif