mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
为API添加获取配置型内容的接口
This commit is contained in:
parent
f0a538d37d
commit
3d25ede46f
@ -101,6 +101,13 @@ API_EXPORT void API_CALL mk_env_init1(int thread_num,
|
|||||||
*/
|
*/
|
||||||
API_EXPORT void API_CALL mk_set_option(const char *key, const char *val);
|
API_EXPORT void API_CALL mk_set_option(const char *key, const char *val);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取配置项的值
|
||||||
|
* @param key 配置项名
|
||||||
|
*/
|
||||||
|
API_EXPORT const char * API_CALL mk_get_option(const char *key);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 创建http[s]服务器
|
* 创建http[s]服务器
|
||||||
* @param port htt监听端口,推荐80,传入0则随机分配
|
* @param port htt监听端口,推荐80,传入0则随机分配
|
||||||
|
@ -119,6 +119,17 @@ API_EXPORT void API_CALL mk_set_option(const char *key, const char *val) {
|
|||||||
mINI::Instance()[key] = val;
|
mINI::Instance()[key] = val;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
API_EXPORT const char * API_CALL mk_get_option(const char *key)
|
||||||
|
{
|
||||||
|
assert(key);
|
||||||
|
if (mINI::Instance().find(key) == mINI::Instance().end()) {
|
||||||
|
WarnL << "key:" << key << " not existed!";
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
return mINI::Instance()[key].data();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
API_EXPORT uint16_t API_CALL mk_http_server_start(uint16_t port, int ssl) {
|
API_EXPORT uint16_t API_CALL mk_http_server_start(uint16_t port, int ssl) {
|
||||||
ssl = MAX(0,MIN(ssl,1));
|
ssl = MAX(0,MIN(ssl,1));
|
||||||
try {
|
try {
|
||||||
|
Loading…
Reference in New Issue
Block a user