GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
udp_header_types.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2020 Free Software Foundation, Inc.
4 *
5 * This file is part of GNU Radio
6 *
7 * SPDX-License-Identifier: GPL-3.0-or-later
8 *
9 */
10
11#ifndef NETWORK_UDPHEADERTYPES_H_
12#define NETWORK_UDPHEADERTYPES_H_
13
14constexpr int HEADERTYPE_NONE = 0;
15constexpr int HEADERTYPE_SEQNUM = 1;
16constexpr int HEADERTYPE_SEQPLUSSIZE = 2;
17// 3 and 4 were defined but have been removed. ATA kept as 5 for backward compatibility.
18constexpr int HEADERTYPE_OLDATA = 5;
19
20#endif /* NETWORK_UDPHEADERTYPES_H_ */
constexpr int HEADERTYPE_NONE
Definition: udp_header_types.h:14
constexpr int HEADERTYPE_SEQNUM
Definition: udp_header_types.h:15
constexpr int HEADERTYPE_OLDATA
Definition: udp_header_types.h:18
constexpr int HEADERTYPE_SEQPLUSSIZE
Definition: udp_header_types.h:16