diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-02-11 07:48:28 +0100 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-02-11 07:48:28 +0100 |
commit | bb9e155841de0e0fce81183a2fe6471f5c4df288 (patch) | |
tree | 4e7d1f77a0747b6a9e430f7406047d6c8ddf383a /netwerk/protocol/http/nsHttpConnection.h | |
parent | aaa70dac618e0f56ea3fbe307f3a157360a79069 (diff) | |
download | UXP-bb9e155841de0e0fce81183a2fe6471f5c4df288.tar UXP-bb9e155841de0e0fce81183a2fe6471f5c4df288.tar.gz UXP-bb9e155841de0e0fce81183a2fe6471f5c4df288.tar.lz UXP-bb9e155841de0e0fce81183a2fe6471f5c4df288.tar.xz UXP-bb9e155841de0e0fce81183a2fe6471f5c4df288.zip |
Bug 1322373 - TLS 1.3 early-data for http/2
Diffstat (limited to 'netwerk/protocol/http/nsHttpConnection.h')
-rw-r--r-- | netwerk/protocol/http/nsHttpConnection.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/netwerk/protocol/http/nsHttpConnection.h b/netwerk/protocol/http/nsHttpConnection.h index 783b080b3..1f8500d75 100644 --- a/netwerk/protocol/http/nsHttpConnection.h +++ b/netwerk/protocol/http/nsHttpConnection.h @@ -248,6 +248,13 @@ private: // Start the Spdy transaction handler when NPN indicates spdy/* void StartSpdy(uint8_t versionLevel); + // Like the above, but do the bare minimum to do 0RTT data, so we can back + // it out, if necessary + void Start0RTTSpdy(uint8_t versionLevel); + + // Helpers for Start*Spdy + nsresult TryTakeSubTransactions(nsTArray<RefPtr<nsAHttpTransaction> > &list); + nsresult MoveTransactionsToSpdy(nsresult status, nsTArray<RefPtr<nsAHttpTransaction> > &list); // Directly Add a transaction to an active connection for SPDY nsresult AddTransaction(nsAHttpTransaction *, int32_t); @@ -370,6 +377,8 @@ private: // the handsake. int64_t mContentBytesWritten0RTT; bool mEarlyDataNegotiated; //Only used for telemetry + nsCString mEarlyNegotiatedALPN; + bool mDid0RTTSpdy; }; } // namespace net |