table of contents
TSHTTPTXNISINTERNAL(3ts) | Apache Traffic Server | TSHTTPTXNISINTERNAL(3ts) |
NAME¶
TSHttpTxnIsInternal - test whether a request is internally-generated
SYNOPSIS¶
#include <ts/ts.h>
DESCRIPTION¶
TSHttpTxnIsInternal() tests whether a HTTP transaction was originated within Traffic Server.
TSHttpSsnIsInternal() tests whether a HTTP session was originated within Traffic Server.
RETURN VALUES¶
Both these APIs return a int, indicating whether the request was internal (1) or not (0).
EXAMPLES¶
The ESI plugin uses TSHttpTxnIsInternal() to ignore requests that is had generated while fetching portions of an ESI document:
static bool checkForCacheHeader(const char *name, int name_len, const char *value, int value_len, bool &cacheable) {
SEE ALSO¶
TSAPI(3ts)
COPYRIGHT¶
2024, dev@trafficserver.apache.org
April 13, 2024 | 9.2 |