2022-02-23 16:43:50 +03:00
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// Licensed under the Apache 2.0 License.
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace ccf
|
|
|
|
{
|
2024-04-17 10:48:38 +03:00
|
|
|
enum class FrameFormat : uint8_t
|
2022-02-23 16:43:50 +03:00
|
|
|
{
|
|
|
|
http = 0
|
|
|
|
};
|
|
|
|
}
|