17 lines
463 B
C#
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";
|
|
}
|
|
}
|