CapturedReqTime returns the wall time associated with the most recent request chunk on this connection, or time.Now() if the context doesn't carry a captured-time source.
(ctx context.Context)
| 214 | // recent request chunk on this connection, or time.Now() if the |
| 215 | // context doesn't carry a captured-time source. |
| 216 | func CapturedReqTime(ctx context.Context) time.Time { |
| 217 | return capturedTime(ctx, CapturedReqTimeKey) |
| 218 | } |
| 219 | |
| 220 | // CapturedRespTime returns the wall time associated with the most |
| 221 | // recent response chunk on this connection, or time.Now() if the |