mirror of
https://gitee.com/xia-chu/ZLMediaKit.git
synced 2026-05-17 23:37:49 +08:00
fix
Some checks are pending
Android / build (push) Waiting to run
CodeQL / Analyze (cpp) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
Docker / build (push) Waiting to run
Linux / build (push) Waiting to run
macOS / build (push) Waiting to run
Windows / build (push) Waiting to run
Some checks are pending
Android / build (push) Waiting to run
CodeQL / Analyze (cpp) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
Docker / build (push) Waiting to run
Linux / build (push) Waiting to run
macOS / build (push) Waiting to run
Windows / build (push) Waiting to run
This commit is contained in:
parent
268bfcea06
commit
faf9afc646
@ -63,7 +63,7 @@ const string kSSLPort = HTTP_FIELD"sslport";
|
|||||||
onceToken token1([](){
|
onceToken token1([](){
|
||||||
mINI::Instance()[kPort] = 80;
|
mINI::Instance()[kPort] = 80;
|
||||||
mINI::Instance()[kSSLPort] = 443;
|
mINI::Instance()[kSSLPort] = 443;
|
||||||
},nullptr);
|
});
|
||||||
}//namespace Http
|
}//namespace Http
|
||||||
|
|
||||||
// //////////SHELL配置/////////// [AUTO-TRANSLATED:f023ec45]
|
// //////////SHELL配置/////////// [AUTO-TRANSLATED:f023ec45]
|
||||||
@ -73,7 +73,7 @@ namespace Shell {
|
|||||||
const string kPort = SHELL_FIELD"port";
|
const string kPort = SHELL_FIELD"port";
|
||||||
onceToken token1([](){
|
onceToken token1([](){
|
||||||
mINI::Instance()[kPort] = 9000;
|
mINI::Instance()[kPort] = 9000;
|
||||||
},nullptr);
|
});
|
||||||
} //namespace Shell
|
} //namespace Shell
|
||||||
|
|
||||||
// //////////RTSP服务器配置/////////// [AUTO-TRANSLATED:950e1981]
|
// //////////RTSP服务器配置/////////// [AUTO-TRANSLATED:950e1981]
|
||||||
@ -85,7 +85,7 @@ const string kSSLPort = RTSP_FIELD"sslport";
|
|||||||
onceToken token1([](){
|
onceToken token1([](){
|
||||||
mINI::Instance()[kPort] = 554;
|
mINI::Instance()[kPort] = 554;
|
||||||
mINI::Instance()[kSSLPort] = 332;
|
mINI::Instance()[kSSLPort] = 332;
|
||||||
},nullptr);
|
});
|
||||||
|
|
||||||
} //namespace Rtsp
|
} //namespace Rtsp
|
||||||
|
|
||||||
@ -98,7 +98,7 @@ const string kSSLPort = RTMP_FIELD"sslport";
|
|||||||
onceToken token1([](){
|
onceToken token1([](){
|
||||||
mINI::Instance()[kPort] = 1935;
|
mINI::Instance()[kPort] = 1935;
|
||||||
mINI::Instance()[kSSLPort] = 19350;
|
mINI::Instance()[kSSLPort] = 19350;
|
||||||
},nullptr);
|
});
|
||||||
} //namespace RTMP
|
} //namespace RTMP
|
||||||
|
|
||||||
// //////////Rtp代理相关配置/////////// [AUTO-TRANSLATED:7b285587]
|
// //////////Rtp代理相关配置/////////// [AUTO-TRANSLATED:7b285587]
|
||||||
@ -108,16 +108,16 @@ namespace RtpProxy {
|
|||||||
const string kPort = RTP_PROXY_FIELD"port";
|
const string kPort = RTP_PROXY_FIELD"port";
|
||||||
onceToken token1([](){
|
onceToken token1([](){
|
||||||
mINI::Instance()[kPort] = 10000;
|
mINI::Instance()[kPort] = 10000;
|
||||||
},nullptr);
|
});
|
||||||
} //namespace RtpProxy
|
} //namespace RtpProxy
|
||||||
|
|
||||||
namespace Python {
|
namespace Python {
|
||||||
#define Python_FIELD "python."
|
#define Python_FIELD "python."
|
||||||
const string kPlugin = Python_FIELD"plugin";
|
const string kPlugin = Python_FIELD"plugin";
|
||||||
onceToken token1([](){
|
onceToken token1([](){
|
||||||
mINI::Instance()[kPlugin] = "mk_plugin";
|
mINI::Instance()[kPlugin] = "";
|
||||||
},nullptr);
|
});
|
||||||
} //namespace RtpProxy
|
} //namespace Python
|
||||||
|
|
||||||
} // namespace mediakit
|
} // namespace mediakit
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user