mirror of
https://github.com/overte-org/overte.git
synced 2025-08-11 09:53:30 +02:00
34 lines
748 B
C
34 lines
748 B
C
//
|
|
// AssetUtils.h
|
|
// libraries/networking/src
|
|
//
|
|
// Created by Ryan Huffman on 2015/07/30
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_AssetUtils_h
|
|
#define hifi_AssetUtils_h
|
|
|
|
#include "NLPacketList.h"
|
|
|
|
using MessageID = uint32_t;
|
|
using DataOffset = int64_t;
|
|
|
|
const size_t SHA256_HASH_LENGTH = 32;
|
|
const size_t SHA256_HASH_HEX_LENGTH = 64;
|
|
const uint64_t MAX_UPLOAD_SIZE = 1000 * 1000 * 1000; // 1GB
|
|
|
|
enum AssetServerError : uint8_t {
|
|
NO_ERROR = 0,
|
|
ASSET_NOT_FOUND,
|
|
INVALID_BYTE_RANGE,
|
|
ASSET_TOO_LARGE,
|
|
PERMISSION_DENIED
|
|
};
|
|
|
|
const QString ATP_SCHEME = "atp";
|
|
|
|
#endif
|