Loading...
Searching...
No Matches
priority_pktqueue.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2015 Daniel Krebs
3 * 2016 INRIA
4 *
5 * This file is subject to the terms and conditions of the GNU Lesser
6 * General Public License v2.1. See the file LICENSE in the top level
7 * directory for more details.
8 */
9
10#pragma once
11
24
25#include <stdint.h>
26
27#include "priority_queue.h"
28#include "net/gnrc/pkt.h"
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
42
47
51#define PRIORITY_PKTQUEUE_NODE_INIT(priority, pkt) { NULL, priority, pkt }
52
56#define PRIORITY_PKTQUEUE_INIT { NULL }
57
69 uint32_t priority,
71{
72 node->next = NULL;
73 node->priority = priority;
74 node->pkt = pkt;
75}
76
84{
86
87 *queue = qn;
88}
89
98
105
114
123
132
133#ifdef __cplusplus
134}
135#endif
136
struct gnrc_pktsnip gnrc_pktsnip_t
Type to represent parts (either headers or payload) of a packet, called snips.
priority_queue_t gnrc_priority_pktqueue_t
data type for gnrc priority packet queues
struct gnrc_priority_pktqueue_node gnrc_priority_pktqueue_node_t
data type for gnrc priority packet queue nodes
uint32_t gnrc_priority_pktqueue_length(gnrc_priority_pktqueue_t *queue)
Get the length information of a gnrc priority packet queue object.
void gnrc_priority_pktqueue_flush(gnrc_priority_pktqueue_t *queue)
flush the gnrc priority packet queue
static void gnrc_priority_pktqueue_node_init(gnrc_priority_pktqueue_node_t *node, uint32_t priority, gnrc_pktsnip_t *pkt)
Initialize a gnrc priority packet queue node object.
#define PRIORITY_PKTQUEUE_INIT
Static initializer for gnrc_priority_pktqueue_t.
gnrc_pktsnip_t * gnrc_priority_pktqueue_head(gnrc_priority_pktqueue_t *queue)
Get first element from queue without removing.
static void gnrc_priority_pktqueue_init(gnrc_priority_pktqueue_t *queue)
Initialize a gnrc priority packet queue object.
gnrc_pktsnip_t * gnrc_priority_pktqueue_pop(gnrc_priority_pktqueue_t *queue)
Get first element and remove it from queue.
void gnrc_priority_pktqueue_push(gnrc_priority_pktqueue_t *queue, gnrc_priority_pktqueue_node_t *node)
add node into queue based on its priority
General definitions for network packets and their helper functions.
A simple priority queue.
data type for gnrc priority packet queue nodes
uint32_t priority
queue node priority
gnrc_pktsnip_t * pkt
queue node data
struct gnrc_priority_pktqueue_node * next
next queue node
data type for priority queues