mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-25 20:27:34 +08:00
添加kick_sessions接口
This commit is contained in:
parent
bcc5c839a5
commit
517f3c229c
@ -517,6 +517,28 @@ void installWebApi() {
|
|||||||
session->safeShutdown();
|
session->safeShutdown();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
//批量断开tcp连接,比如说可以断开rtsp、rtmp播放器等
|
||||||
|
//测试url http://127.0.0.1/index/api/kick_sessions?local_port=1935
|
||||||
|
API_REGIST(api,kick_sessions,{
|
||||||
|
CHECK_SECRET();
|
||||||
|
uint16_t local_port = allArgs["local_port"].as<uint16_t>();
|
||||||
|
string &peer_ip = allArgs["peer_ip"];
|
||||||
|
uint64_t count_hit = 0;
|
||||||
|
|
||||||
|
SessionMap::Instance().for_each_session([&](const string &id,const TcpSession::Ptr &session){
|
||||||
|
if(local_port != 0 && local_port != session->get_local_port()){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if(!peer_ip.empty() && peer_ip != session->get_peer_ip()){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
session->safeShutdown();
|
||||||
|
++count_hit;
|
||||||
|
});
|
||||||
|
val["count_hit"] = (Json::UInt64)count_hit;
|
||||||
|
});
|
||||||
|
|
||||||
static auto addStreamProxy = [](const string &vhost,
|
static auto addStreamProxy = [](const string &vhost,
|
||||||
const string &app,
|
const string &app,
|
||||||
const string &stream,
|
const string &stream,
|
||||||
|
Loading…
Reference in New Issue
Block a user