Closed
Bug 1790403
Opened 2 years ago
Closed 2 years ago
Implement nsIWebTransportReceiveStream in parent process
Categories
(Core :: Networking, task, P2)
Core
Networking
Tracking
()
RESOLVED
FIXED
109 Branch
Tracking | Status | |
---|---|---|
firefox109 | --- | fixed |
People
(Reporter: kershaw, Assigned: kershaw)
References
(Blocks 1 open bug)
Details
(Whiteboard: [necko-triaged])
Attachments
(1 file)
Two XPCOM interfaces below will be implemented in this bug.
interface nsIWebTransportReceiveStream : nsIAsyncInputStream {
attribute unsigned long long StreamId;
// Sends the STOP_SENDING on the stream.
void SendStopSending(in uint8_t aError);
};
// Used to receive events regarding a nsIWebTransportReceiveStream.
interface nsIWebTransportReceiveStreamListener : nsIIntputStreamCallback {
// Called when RESET_STREAM is received for the stream.
void OnResetStreamReceived(in uint8_t aError);
};
Assignee | ||
Comment 1•2 years ago
|
||
Updated•2 years ago
|
Assignee: nobody → kershaw
Status: NEW → ASSIGNED
Pushed by kjang@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/c5ab6ec39412
WebTransportReceiveStream implementation, r=necko-reviewers,valentin
Comment 3•2 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 2 years ago
status-firefox109:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 109 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•