Repository: trafficserver Updated Branches: refs/heads/master 1110f6f3e -> 15e262ab6
add a comment about TS_HRTime macro in experimental.h Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/15e262ab Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/15e262ab Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/15e262ab Branch: refs/heads/master Commit: 15e262ab6d76be41592c9ce036e175b378ebcd5f Parents: 1110f6f Author: Sudheer Vinukonda <[email protected]> Authored: Thu Aug 20 21:22:07 2015 +0000 Committer: Sudheer Vinukonda <[email protected]> Committed: Thu Aug 20 21:22:07 2015 +0000 ---------------------------------------------------------------------- proxy/InkAPI.cc | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/15e262ab/proxy/InkAPI.cc ---------------------------------------------------------------------- diff --git a/proxy/InkAPI.cc b/proxy/InkAPI.cc index 4f84612..b49ac5e 100644 --- a/proxy/InkAPI.cc +++ b/proxy/InkAPI.cc @@ -6421,6 +6421,10 @@ TSHttpTxnIntercept(TSCont contp, TSHttpTxn txnp) http_sm->plugin_tunnel->set_accept_cont(i); } +// The API below require timer values as TSHRTime parameters +// which are in nanoseconds. Use the TS_HRTIME macros defined +// in api/ts/experimental.h until they are promoted to stable +// api. /* Net VConnections */ void TSVConnInactivityTimeoutSet(TSVConn connp, TSHRTime timeout)
