mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 23:08:39 +09:00
Bug 1343600 - Add TLS handshake Start/Stop events
This commit is contained in:
parent
e8af99be6e
commit
c7e0248d2d
4 changed files with 33 additions and 15 deletions
|
|
@ -619,7 +619,9 @@ nsHttpTransaction::OnTransportStatus(nsITransport* transport,
|
|||
} else if (status == NS_NET_STATUS_CONNECTING_TO) {
|
||||
SetConnectStart(TimeStamp::Now());
|
||||
} else if (status == NS_NET_STATUS_CONNECTED_TO) {
|
||||
SetConnectEnd(TimeStamp::Now());
|
||||
SetConnectEnd(TimeStamp::Now(), true);
|
||||
} else if (status == NS_NET_STATUS_TLS_HANDSHAKE_ENDED) {
|
||||
SetConnectEnd(TimeStamp::Now(), false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue