forked from mit-ll/LL-DLEP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIdTypes.h
More file actions
30 lines (24 loc) · 840 Bytes
/
IdTypes.h
File metadata and controls
30 lines (24 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
* Dynamic Link Exchange Protocol (DLEP)
*
* Copyright (C) 2013 Massachusetts Institute of Technology
*/
/// @file
/// Types for various kinds of DLEP IDs.
///
/// These are NOT the types that are used on the wire, i.e., in the
/// actual protocol. The wire representation varies according to the
/// DLEP draft and is handled via configuration; see ProtocolConfig.
/// These types are used internally and in the library interface to
/// represent the IDs. They should be large enough to accommodate the
/// largest expected wire representation for their respective ID type.
#ifndef IDTYPES_H
#define IDTYPES_H
namespace LLDLEP
{
typedef std::uint32_t SignalIdType;
typedef std::uint32_t DataItemIdType;
typedef std::uint32_t ExtensionIdType;
typedef std::uint32_t StatusCodeIdType;
} // namespace LLDLEP
#endif // IDTYPES_H