Files
UnrealEngine/Engine/Source/Programs/UnrealCloudDDC/Jupiter/Implementation/CommonHeaders.cs
2025-05-18 13:04:45 +08:00

17 lines
463 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace Jupiter.Implementation
{
public static class CommonHeaders
{
public const string HashHeaderSHA1Name = "X-Jupiter-Sha1";
public const string HashHeaderName = "X-Jupiter-IoHash";
public const string LastAccessHeaderName = "X-Jupiter-LastAccess";
public const string InlinePayloadHash = "X-Jupiter-InlinePayloadHash";
public const string AllowOverwrite = "X-Jupiter-Allow-Overwrite";
}
}