mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 17:31:47 +09:00
[Network] Add a socket thread check and early exit for corner cases.
This commit is contained in:
parent
bd80099e2c
commit
e45fbf91ce
2 changed files with 18 additions and 6 deletions
|
|
@ -492,8 +492,15 @@ private:
|
|||
//-------------------------------------------------------------------------
|
||||
|
||||
ReentrantMonitor mReentrantMonitor;
|
||||
// This is used as a flag that we're shut down, and no new events should be
|
||||
// dispatched.
|
||||
nsCOMPtr<nsIEventTarget> mSocketThreadTarget;
|
||||
|
||||
Atomic<bool, mozilla::Relaxed> mIsShuttingDown;
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
// NOTE: these members are only accessed on the socket transport thread
|
||||
//-------------------------------------------------------------------------
|
||||
// connection limits
|
||||
uint16_t mMaxConns;
|
||||
uint16_t mMaxPersistConnsPerHost;
|
||||
|
|
@ -501,11 +508,6 @@ private:
|
|||
uint16_t mMaxRequestDelay; // in seconds
|
||||
uint16_t mMaxPipelinedRequests;
|
||||
uint16_t mMaxOptimisticPipelinedRequests;
|
||||
Atomic<bool, mozilla::Relaxed> mIsShuttingDown;
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
// NOTE: these members are only accessed on the socket transport thread
|
||||
//-------------------------------------------------------------------------
|
||||
|
||||
bool ProcessPendingQForEntry(nsConnectionEntry *, bool considerAll);
|
||||
bool IsUnderPressure(nsConnectionEntry *ent,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue