// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef IPCZ_SRC_IPCZ_NODE_TYPE_H_ #define IPCZ_SRC_IPCZ_NODE_TYPE_H_ #include <cstdint> namespace ipcz { // Enumeration indicating the role a Node plays in its network of nodes. Note // that this is used by internal wire messages, so values must not be changed or // removed. enum class NodeType : uint8_t { … }; } // namespace ipcz #endif // IPCZ_SRC_IPCZ_NODE_TYPE_H_