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