mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
Random port pool ensures that both UDP and TCP modes are available simultaneously
This commit is contained in:
parent
1930d909f9
commit
50f65c4ba4
@ -352,12 +352,20 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
void makeSockPair(std::pair<Socket::Ptr, Socket::Ptr> &pair, const string &local_ip, bool re_use_port, bool is_udp) {
|
void makeSockPair(std::pair<Socket::Ptr, Socket::Ptr> &pair, const string &local_ip, bool re_use_port, bool is_udp) {
|
||||||
auto &sock0 = pair.first;
|
|
||||||
auto &sock1 = pair.second;
|
|
||||||
auto sock_pair = getPortPair();
|
auto sock_pair = getPortPair();
|
||||||
if (!sock_pair) {
|
if (!sock_pair) {
|
||||||
throw runtime_error("none reserved port in pool");
|
throw runtime_error("none reserved port in pool");
|
||||||
}
|
}
|
||||||
|
makeSockPair_l(sock_pair, pair, local_ip, re_use_port, is_udp);
|
||||||
|
|
||||||
|
// 确保udp和tcp模式都能打开
|
||||||
|
auto new_pair = std::make_pair(Socket::createSocket(), Socket::createSocket());
|
||||||
|
makeSockPair_l(sock_pair, new_pair, local_ip, re_use_port, !is_udp);
|
||||||
|
}
|
||||||
|
|
||||||
|
void makeSockPair_l(const std::shared_ptr<uint16_t> &sock_pair, std::pair<Socket::Ptr, Socket::Ptr> &pair, const string &local_ip, bool re_use_port, bool is_udp) {
|
||||||
|
auto &sock0 = pair.first;
|
||||||
|
auto &sock1 = pair.second;
|
||||||
if (is_udp) {
|
if (is_udp) {
|
||||||
if (!sock0->bindUdpSock(2 * *sock_pair, local_ip.data(), re_use_port)) {
|
if (!sock0->bindUdpSock(2 * *sock_pair, local_ip.data(), re_use_port)) {
|
||||||
// 分配端口失败
|
// 分配端口失败
|
||||||
|
Loading…
Reference in New Issue
Block a user