Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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";
}
}