struct sendq_entry_s

Overview

Send queue entry structure More…

#include <send_queue.h>

struct sendq_entry_s {
    // fields

    struct sendq_entry_s* next;
    struct sendq_entry_s* prev;
    uint8_t* pkt;
    size_t pkt_len;
    struct timeval send_time;
};

Detailed Documentation

Send queue entry structure

Fields

struct sendq_entry_s* next

previous packet in the queue

struct sendq_entry_s* prev

next packet in the queue

uint8_t* pkt

packet data

size_t pkt_len

packet data size

struct timeval send_time

packet send time