Skip to content

Commit 7a25011

Browse files
Set WebSocket max message size to 256KB
1 parent cbaffdc commit 7a25011

6 files changed

+8
-6
lines changed

src/channel.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Channel::~Channel() { impl()->resetCallbacks(); }
1717

1818
Channel::Channel(impl_ptr<impl::Channel> impl) : CheshireCat<impl::Channel>(std::move(impl)) {}
1919

20-
size_t Channel::maxMessageSize() const { return DEFAULT_MAX_MESSAGE_SIZE; }
20+
size_t Channel::maxMessageSize() const { return 0; }
2121

2222
size_t Channel::bufferedAmount() const { return impl()->bufferedAmount; }
2323

src/impl/datachannel.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ bool DataChannel::isClosed(void) const { return mIsClosed; }
153153

154154
size_t DataChannel::maxMessageSize() const {
155155
auto pc = mPeerConnection.lock();
156-
return pc ? pc->remoteMaxMessageSize() : DEFAULT_MAX_MESSAGE_SIZE;
156+
return pc ? pc->remoteMaxMessageSize() : DEFAULT_REMOTE_MAX_MESSAGE_SIZE;
157157
}
158158

159159
void DataChannel::assignStream(uint16_t stream) {

src/impl/internals.hpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ const uint16_t MAX_SCTP_STREAMS_COUNT = 1024; // Max number of negotiated SCTP s
3939
// of memory, Chromium historically limits to 1024.
4040

4141
const size_t DEFAULT_LOCAL_MAX_MESSAGE_SIZE = 256 * 1024; // Default local max message size
42-
const size_t DEFAULT_MAX_MESSAGE_SIZE = 65536; // Remote max message size if not specified in SDP
42+
const size_t DEFAULT_REMOTE_MAX_MESSAGE_SIZE = 65536; // Remote max message size if not in SDP
43+
44+
const size_t DEFAULT_WS_MAX_MESSAGE_SIZE = 256 * 1024; // Default max message size for WebSockets
4345

4446
const size_t RECV_QUEUE_LIMIT = 1024 * 1024; // Max per-channel queue size
4547

src/impl/peerconnection.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ optional<Description> PeerConnection::remoteDescription() const {
103103
size_t PeerConnection::remoteMaxMessageSize() const {
104104
const size_t localMax = config.maxMessageSize.value_or(DEFAULT_LOCAL_MAX_MESSAGE_SIZE);
105105

106-
size_t remoteMax = DEFAULT_MAX_MESSAGE_SIZE;
106+
size_t remoteMax = DEFAULT_REMOTE_MAX_MESSAGE_SIZE;
107107
std::lock_guard lock(mRemoteDescriptionMutex);
108108
if (mRemoteDescription)
109109
if (auto *application = mRemoteDescription->application())

src/impl/websocket.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ bool WebSocket::isOpen() const { return state == State::Open; }
156156

157157
bool WebSocket::isClosed() const { return state == State::Closed; }
158158

159-
size_t WebSocket::maxMessageSize() const { return config.maxMessageSize.value_or(DEFAULT_MAX_MESSAGE_SIZE); }
159+
size_t WebSocket::maxMessageSize() const { return config.maxMessageSize.value_or(DEFAULT_WS_MAX_MESSAGE_SIZE); }
160160

161161
optional<message_variant> WebSocket::receive() {
162162
auto next = mRecvQueue.pop();

src/impl/wstransport.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ WsTransport::WsTransport(LowerTransport lower, shared_ptr<WsHandshake> handshake
5353
std::visit(rtc::overloaded{[](auto l) { return l->isActive(); },
5454
[](shared_ptr<TlsTransport> l) { return l->isClient(); }},
5555
lower)),
56-
mMaxMessageSize(config.maxMessageSize.value_or(DEFAULT_MAX_MESSAGE_SIZE)),
56+
mMaxMessageSize(config.maxMessageSize.value_or(DEFAULT_WS_MAX_MESSAGE_SIZE)),
5757
mMaxOutstandingPings(config.maxOutstandingPings.value_or(0)) {
5858

5959
onRecv(std::move(recvCallback));

0 commit comments

Comments
 (0)