media_player_client/src/entities/HttpProtocol.ts

14 lines
517 B
TypeScript
Raw Normal View History

export namespace HttpProtocol {
export const DefaultHttpPort = 61429;
export const RequestUploadFile = "/upload_file";
export const UploadTypeBackgroundImage = "U_T_BACKGROUND_IMAGE";
export const UploadTypeMedia = "U_T_MEDIA";
export const UploadTypeRootFS = "U_T_ROOT_FS";
export const kHeaderXFileLength = "X-File-Length";
export const kHeaderXFileMD5 = "X-File-MD5";
export const kHeaderXProductName = "X-Product-Name";
export const kHeaderDefaultValueXProductName = "RK_3568";
}