Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
0b8c4e75
Commit
0b8c4e75
authored
5 years ago
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加mk_env_init1接口
parent
15fbb3d0
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
44 行增加
和
9 行删除
+44
-9
api/include/common.h
+18
-0
api/source/common.cpp
+26
-9
没有找到文件。
api/include/common.h
查看文件 @
0b8c4e75
...
...
@@ -72,6 +72,24 @@ typedef struct {
API_EXPORT
void
API_CALL
mk_env_init
(
const
mk_config
*
cfg
);
/**
* 基础类型参数版本的mk_env_init,为了方便其他语言调用
*/
API_EXPORT
void
API_CALL
mk_env_init1
(
// 线程数
int
thread_num
,
// 日志级别,支持0~4
int
log_level
,
// 配置文件是内容还是路径
int
ini_is_path
,
// 配置文件内容或路径,可以为NULL
const
char
*
ini
,
// ssl证书是内容还是路径
int
ssl_is_path
,
// ssl证书内容或路径,可以为NULL
const
char
*
ssl
,
// 证书密码,可以为NULL
const
char
*
ssl_pwd
);
/**
* 设置配置项
* @param key 配置项名
* @param val 配置项值
...
...
This diff is collapsed.
Click to expand it.
api/source/common.cpp
查看文件 @
0b8c4e75
...
...
@@ -53,25 +53,42 @@ static TcpServer::Ptr tcpRtpServer(new TcpServer());
//////////////////////////environment init///////////////////////////
API_EXPORT
void
API_CALL
mk_env_init
(
const
mk_config
*
cfg
)
{
assert
(
cfg
);
mk_env_init1
(
cfg
->
thread_num
,
cfg
->
log_level
,
cfg
->
ini_is_path
,
cfg
->
ini
,
cfg
->
ssl_is_path
,
cfg
->
ssl
,
cfg
->
ssl_pwd
);
}
API_EXPORT
void
API_CALL
mk_env_init1
(
int
thread_num
,
int
log_level
,
int
ini_is_path
,
const
char
*
ini
,
int
ssl_is_path
,
const
char
*
ssl
,
const
char
*
ssl_pwd
)
{
static
onceToken
token
([
&
]()
{
Logger
::
Instance
().
add
(
std
::
make_shared
<
ConsoleChannel
>
(
"console"
,
(
LogLevel
)
cfg
->
log_level
));
Logger
::
Instance
().
add
(
std
::
make_shared
<
ConsoleChannel
>
(
"console"
,
(
LogLevel
)
log_level
));
Logger
::
Instance
().
setWriter
(
std
::
make_shared
<
AsyncLogWriter
>
());
EventPollerPool
::
setPoolSize
(
cfg
->
thread_num
);
WorkThreadPool
::
setPoolSize
(
cfg
->
thread_num
);
EventPollerPool
::
setPoolSize
(
thread_num
);
WorkThreadPool
::
setPoolSize
(
thread_num
);
if
(
cfg
->
ini
)
{
if
(
ini
&&
ini
[
0
]
)
{
//设置配置文件
if
(
cfg
->
ini_is_path
)
{
mINI
::
Instance
().
parseFile
(
cfg
->
ini
);
if
(
ini_is_path
)
{
mINI
::
Instance
().
parseFile
(
ini
);
}
else
{
mINI
::
Instance
().
parse
(
cfg
->
ini
);
mINI
::
Instance
().
parse
(
ini
);
}
}
if
(
cfg
->
ssl
)
{
if
(
ssl
&&
ssl
[
0
]
)
{
//设置ssl证书
SSL_Initor
::
Instance
().
loadCertificate
(
cfg
->
ssl
,
true
,
cfg
->
ssl_pwd
?
cfg
->
ssl_pwd
:
""
,
cfg
->
ssl_is_path
);
SSL_Initor
::
Instance
().
loadCertificate
(
ssl
,
true
,
ssl_pwd
?
ssl_pwd
:
""
,
ssl_is_path
);
}
});
}
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论