summaryrefslogtreecommitdiffstats
path: root/dom/webtransport/child/WebTransportChild.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /dom/webtransport/child/WebTransportChild.cpp
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/webtransport/child/WebTransportChild.cpp')
-rw-r--r--dom/webtransport/child/WebTransportChild.cpp75
1 files changed, 75 insertions, 0 deletions
diff --git a/dom/webtransport/child/WebTransportChild.cpp b/dom/webtransport/child/WebTransportChild.cpp
new file mode 100644
index 0000000000..12714b003e
--- /dev/null
+++ b/dom/webtransport/child/WebTransportChild.cpp
@@ -0,0 +1,75 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set ts=8 sts=2 et sw=2 tw=80: */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#include "mozilla/dom/WebTransport.h"
+#include "mozilla/dom/WebTransportChild.h"
+#include "mozilla/dom/WebTransportLog.h"
+
+namespace mozilla::dom {
+
+void WebTransportChild::Shutdown(bool aClose) {
+ LOG(("WebTransportChild::Shutdown() for %p (%p)", this, mTransport));
+ mTransport = nullptr;
+ if (!aClose || !CanSend()) {
+ return;
+ }
+
+ Close();
+}
+
+void WebTransportChild::CloseAll() {
+ // XXX need impl
+}
+
+::mozilla::ipc::IPCResult WebTransportChild::RecvCloseAll(
+ CloseAllResolver&& aResolver) {
+ CloseAll();
+ aResolver(NS_OK);
+ return IPC_OK();
+}
+
+::mozilla::ipc::IPCResult WebTransportChild::RecvRemoteClosed(
+ const bool& aCleanly, const uint32_t& aCode, const nsACString& aReason) {
+ if (mTransport) {
+ mTransport->RemoteClosed(aCleanly, aCode, aReason);
+ }
+ return IPC_OK();
+}
+
+::mozilla::ipc::IPCResult WebTransportChild::RecvIncomingBidirectionalStream(
+ const uint64_t& aStreamId, const RefPtr<DataPipeReceiver>& aIncoming,
+ const RefPtr<DataPipeSender>& aOutgoing) {
+ if (mTransport) {
+ mTransport->NewBidirectionalStream(aStreamId, aIncoming, aOutgoing);
+ }
+ return IPC_OK();
+}
+
+::mozilla::ipc::IPCResult WebTransportChild::RecvIncomingUnidirectionalStream(
+ const uint64_t& aStreamId, const RefPtr<DataPipeReceiver>& aStream) {
+ if (mTransport) {
+ mTransport->NewUnidirectionalStream(aStreamId, aStream);
+ }
+ return IPC_OK();
+}
+
+::mozilla::ipc::IPCResult WebTransportChild::RecvIncomingDatagram(
+ nsTArray<uint8_t>&& aData, const TimeStamp& aRecvTimeStamp) {
+ if (mTransport) {
+ mTransport->NewDatagramReceived(std::move(aData), aRecvTimeStamp);
+ }
+ return IPC_OK();
+}
+
+::mozilla::ipc::IPCResult WebTransportChild::RecvOnStreamResetOrStopSending(
+ const uint64_t& aStreamId, const StreamResetOrStopSendingError& aError) {
+ if (mTransport) {
+ mTransport->OnStreamResetOrStopSending(aStreamId, aError);
+ }
+ return IPC_OK();
+}
+
+} // namespace mozilla::dom