Skip to content

Commit 868abb4

Browse files
Removed useless HttpProxyTransport send mutex
1 parent 680d1c4 commit 868abb4

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/impl/httpproxytransport.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ void HttpProxyTransport::start() {
3939
void HttpProxyTransport::stop() { unregisterIncoming(); }
4040

4141
bool HttpProxyTransport::send(message_ptr message) {
42-
std::lock_guard lock(mSendMutex);
43-
4442
if (state() != State::Connected)
4543
throw std::runtime_error("HTTP proxy connection is not open");
4644

src/impl/httpproxytransport.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ class HttpProxyTransport final : public Transport,
4141
string mHostname;
4242
string mService;
4343
binary mBuffer;
44-
std::mutex mSendMutex;
4544
};
4645

4746
} // namespace rtc::impl

0 commit comments

Comments
 (0)