Loading...
Searching...
No Matches
type.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2019-20 Freie Universität Berlin
3 *
4 * This file is subject to the terms and conditions of the GNU Lesser
5 * General Public License v2.1. See the file LICENSE in the top level
6 * directory for more details.
7 */
8
23#ifndef NET_GNRC_NETIF_PKTQ_TYPE_H
24#define NET_GNRC_NETIF_PKTQ_TYPE_H
25
26#include "net/gnrc/pktqueue.h"
27#include "xtimer.h"
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
36typedef struct {
38#if CONFIG_GNRC_NETIF_PKTQ_TIMER_US >= 0
42#endif
44
45#ifdef __cplusplus
46}
47#endif
48
49#endif /* NET_GNRC_NETIF_PKTQ_TYPE_H */
Packet queue definitions.
A packet queue for Network interface API with a de-queue timer.
Definition type.h:36
gnrc_pktqueue_t * queue
the actual packet queue class
Definition type.h:37
xtimer_t dequeue_timer
timer to schedule next sending of queued packets
Definition type.h:40
msg_t dequeue_msg
message for gnrc_netif_pktq_t::dequeue_timer to send
Definition type.h:39
data type for packet queue nodes
Definition pktqueue.h:37
Describes a message object which can be sent between threads.
Definition msg.h:196
xtimer timer structure
Definition xtimer.h:97
xtimer interface definitions