Skip to content

Commit ad8ae3e

Browse files
Merge branch 'v0.18'
2 parents 6abae63 + c39e9f8 commit ad8ae3e

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

examples/streamer/dispatchqueue.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include <condition_variable>
1616
#include <queue>
1717
#include <functional>
18+
#include <string>
1819

1920
class DispatchQueue {
2021
typedef std::function<void(void)> fp_t;

src/capi.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,7 @@ int rtcAddTrackEx(int pc, const rtcTrackInit *init) {
10351035
desc.addVP8Codec(init->payloadType);
10361036
break;
10371037
case RTC_CODEC_VP9:
1038-
desc.addVP8Codec(init->payloadType);
1038+
desc.addVP9Codec(init->payloadType);
10391039
break;
10401040
default:
10411041
break;

src/impl/pollservice.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,14 @@ void PollService::process(std::vector<struct pollfd> &pfds) {
124124
mSocks->erase(sock);
125125
callback(Event::Error);
126126

127-
} else if (it->revents & POLLIN || it->revents & POLLOUT) {
127+
} else if (it->revents & POLLIN || it->revents & POLLOUT || it->revents & POLLHUP) {
128128
entry.until = params.timeout
129129
? std::make_optional(clock::now() + *params.timeout)
130130
: nullopt;
131131

132132
auto callback = params.callback;
133-
if (it->revents & POLLIN) {
133+
if (it->revents & POLLIN ||
134+
it->revents & POLLHUP) { // Windows does not set POLLIN on close
134135
PLOG_VERBOSE << "Poll in event";
135136
callback(Event::In);
136137
}

src/impl/tls.cpp

+1-4
Original file line numberDiff line numberDiff line change
@@ -176,15 +176,12 @@ bool check(int success, const string &message) {
176176
}
177177

178178
bool check(SSL *ssl, int ret, const string &message) {
179-
if (ret == BIO_EOF)
180-
return true;
181-
182179
unsigned long err = SSL_get_error(ssl, ret);
183180
if (err == SSL_ERROR_NONE || err == SSL_ERROR_WANT_READ || err == SSL_ERROR_WANT_WRITE) {
184181
return true;
185182
}
186183
if (err == SSL_ERROR_ZERO_RETURN) {
187-
PLOG_DEBUG << "DTLS connection cleanly closed";
184+
PLOG_DEBUG << "OpenSSL connection cleanly closed";
188185
return false;
189186
}
190187
string str = error_string(err);

src/impl/wshandshake.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
#if RTC_ENABLE_WEBSOCKET
1515

16+
#include <list>
17+
#include <map>
18+
#include <stdexcept>
1619
#include <vector>
1720

1821
namespace rtc::impl {

0 commit comments

Comments
 (0)