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/nsAHttpTransaction.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/nsAHttpTransaction.h')
-rw-r--r-- | netwerk/protocol/http/nsAHttpTransaction.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/netwerk/protocol/http/nsAHttpTransaction.h b/netwerk/protocol/http/nsAHttpTransaction.h index 7e42d191a..df998699a 100644 --- a/netwerk/protocol/http/nsAHttpTransaction.h +++ b/netwerk/protocol/http/nsAHttpTransaction.h @@ -216,8 +216,11 @@ public: // If aRestart parameter is true we need to restart the transaction, // otherwise the erly-data has been accepted and we can continue the // transaction. + // If aAlpnChanged is true (and we were assuming http/2), we'll need to take + // the transactions out of the session, rewind them all, and start them back + // over as http/1 transactions // The function will return success or failure of the transaction restart. - virtual nsresult Finish0RTT(bool aRestart) { + virtual nsresult Finish0RTT(bool aRestart, bool aAlpnChanged) { return NS_ERROR_NOT_IMPLEMENTED; } }; |