Hi,

I have a servlet application that would like to know when the underlying HTTP connection
has been established.

In the jetty, I could use the following code:

HttpConnection connection = (HttpConnection) request.getAttribute(HttpConnection.class.getName());
long connectedAt = connection.getCreatedTimeStamp();


How to do it in the undertow? Any help/suggestions are appreciated.


Thanks