ZLMediaKit/src/Http/HttpConst.h

36 lines
920 B
C++
Raw Normal View History

/*
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
*
* Use of this source code is governed by MIT license that can be found in the
* LICENSE file in the root of the source tree. All contributing project authors
* may be found in the AUTHORS file in the root of the source tree.
*/
#ifndef ZLMEDIAKIT_HTTPCONST_H
#define ZLMEDIAKIT_HTTPCONST_H
#include <string>
using namespace std;
namespace mediakit{
/**
* http错误代码获取字符说明
* @param status 404
* @return Not Found
*/
const char *getHttpStatusMessage(int status);
/**
* http mime
* @param name html
* @return mime值text/html
*/
const string &getHttpContentType(const char *name);
}//mediakit
#endif //ZLMEDIAKIT_HTTPCONST_H