1
#pragma once
2

            
3
#include <cstdint>
4

            
5
namespace Envoy {
6
namespace Cilium {
7

            
8
enum ID : uint64_t {
9
  UNKNOWN = 0,
10
  WORLD = 2,
11
  // LocalIdentityFlag is the bit in the numeric identity that identifies
12
  // a numeric identity to have local scope
13
  LocalIdentityFlag = 1 << 24,
14
};
15

            
16
} // namespace Cilium
17
} // namespace Envoy