ywkaras commented on a change in pull request #7715:
URL: https://github.com/apache/trafficserver/pull/7715#discussion_r617594811
##########
File path: iocore/net/P_SSLNetVConnection.h
##########
@@ -100,6 +100,16 @@ class SSLNetVConnection : public UnixNetVConnection
write.enabled = 1;
}
+ bool
+ trackFirstHandshake() override
+ {
+ bool retval = sslHandshakeBeginTime == 0;
+ if (retval) {
+ sslHandshakeBeginTime = Thread::get_hrtime();
Review comment:
Seems odd that sslHandshakeBeginTime does not exist on the master branch.
```
wkaras ~/REPOS/TS3
M$ fgrep sslHandshakeBeginTime $(findsrc)
wkaras ~/REPOS/TS3
M$ git status
On branch master
Your branch is up to date with 'origin/master'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
.srcfmt
nothing added to commit but untracked files present (use "git add" to track)
wkaras ~/REPOS/TS3
M$
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]