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-2022/sdk/include/packet.h
2022-08-05 11:03:11 +08:00

13 lines
169 B
C

#pragma once
#include <sys/queue.h>
#include "marsio.h"
struct packet {
void *raw_pkt;
uint32_t pkt_len;
struct packet *prev;
struct packet *next;
};