Loading...
Searching...
No Matches
dedup.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2019 Freie Universität Berlin
3 * SPDX-License-Identifier: LGPL-2.1-only
4 */
5
6#pragma once
7
26
27#include <stdint.h>
28
29#include "net/gnrc/netif/conf.h"
30
31#ifdef __cplusplus
32extern "C" {
33#endif
34
38typedef struct {
40 uint16_t seq;
41 uint8_t src_len;
43
44#ifdef __cplusplus
45}
46#endif
47
#define GNRC_NETIF_L2ADDR_MAXLEN
Maximum length of the link-layer address.
Definition conf.h:155
Configuration macros for Network interface API.
Structure to store information on the last broadcast packet received.
Definition dedup.h:38
uint16_t seq
link-layer sequence number
Definition dedup.h:40
uint8_t src[GNRC_NETIF_L2ADDR_MAXLEN]
link-layer source address
Definition dedup.h:39
uint8_t src_len
length of gnrc_netif_dedup_t:src
Definition dedup.h:41