TSHttpTxnIsInternal
test whether a request is internally-generated
- Provided by: trafficserver-dev (Version: 8.0.5+ds-3)
- Source: trafficserver
- Report a bug
test whether a request is internally-generated
#include <ts/ts.h>
TSHttpTxnIsInternal() tests whether a HTTP transaction was originated within Traffic Server.
TSHttpSsnIsInternal() tests whether a HTTP session was originated within Traffic Server.
Both these APIs return a int, indicating whether the request was internal (1) or not (0).
The ESI plugin uses TSHttpTxnIsInternal() to ignore requests that is had generated while fetching portions of an ESI document:
checkForCacheHeader(const char *name, int name_len, const char *value, int value_len, bool &cacheable)
{
cacheable = true;
if (Utils::areEqual(name, name_len, TS_MIME_FIELD_EXPIRES, TS_MIME_LEN_EXPIRES)) {
2020, dev@trafficserver.apache.org