blob: 4d1d6c995c4551ff0e481c08eca13c470a5eb6c2 [file] [log] [blame]
/** @file
A brief file description
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/*
* Interfaces in this header file are experimental, undocumented and
* are subject to change even across minor releases of Traffic Server.
* None of the interfaces in this file are committed to be stable
* unless they are migrated to ts/ts.h If you require stable APIs to
* Traffic Server, DO NOT USE anything in this file.
*/
#ifndef __TS_API_EXPERIMENTAL_H__
#define __TS_API_EXPERIMENTAL_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
typedef enum {
TS_FETCH_EVENT_EXT_HEAD_READY = -1,
TS_FETCH_EVENT_EXT_HEAD_DONE = -2,
TS_FETCH_EVENT_EXT_BODY_READY = -3,
TS_FETCH_EVENT_EXT_BODY_DONE = -4,
} TSFetchEventExt;
typedef enum {
TS_FETCH_FLAGS_NONE = 0, // do nothing
TS_FETCH_FLAGS_STREAM = 1 << 1, // enable stream IO
TS_FETCH_FLAGS_DECHUNK = 1 << 2, // dechunk body content
TS_FETCH_FLAGS_NEWLOCK = 1 << 3, // allocate new lock for fetch sm
TS_FETCH_FLAGS_NOT_INTERNAL_REQUEST = 1 << 4 // Allow this fetch to be created as a non-internal request.
} TSFetchFlags;
typedef struct tsapi_fetchsm *TSFetchSM;
/* Forward declaration of in_addr, any user of these APIs should probably
include net/netinet.h or whatever is appropriate on the platform. */
struct in_addr;
/* Cache APIs that are not yet fully supported and/or frozen nor complete. */
tsapi TSReturnCode TSCacheBufferInfoGet(TSCacheTxn txnp, uint64_t *length, uint64_t *offset);
tsapi TSCacheHttpInfo TSCacheHttpInfoCreate();
tsapi void TSCacheHttpInfoReqGet(TSCacheHttpInfo infop, TSMBuffer *bufp, TSMLoc *obj);
tsapi void TSCacheHttpInfoRespGet(TSCacheHttpInfo infop, TSMBuffer *bufp, TSMLoc *obj);
tsapi void TSCacheHttpInfoReqSet(TSCacheHttpInfo infop, TSMBuffer bufp, TSMLoc obj);
tsapi void TSCacheHttpInfoRespSet(TSCacheHttpInfo infop, TSMBuffer bufp, TSMLoc obj);
tsapi void TSCacheHttpInfoKeySet(TSCacheHttpInfo infop, TSCacheKey key);
tsapi void TSCacheHttpInfoSizeSet(TSCacheHttpInfo infop, int64_t size);
tsapi int TSCacheHttpInfoVector(TSCacheHttpInfo infop, void *data, int length);
tsapi time_t TSCacheHttpInfoReqSentTimeGet(TSCacheHttpInfo infop);
tsapi time_t TSCacheHttpInfoRespReceivedTimeGet(TSCacheHttpInfo infop);
int64_t TSCacheHttpInfoSizeGet(TSCacheHttpInfo infop);
/* Do not edit these apis, used internally */
tsapi int TSMimeHdrFieldEqual(TSMBuffer bufp, TSMLoc hdr_obj, TSMLoc field1, TSMLoc field2);
tsapi TSReturnCode TSHttpTxnHookRegisteredFor(TSHttpTxn txnp, TSHttpHookID id, TSEventFunc funcp);
/* for Media-IXT mms over http */
typedef enum {
TS_HTTP_CNTL_GET_LOGGING_MODE,
TS_HTTP_CNTL_SET_LOGGING_MODE,
TS_HTTP_CNTL_GET_INTERCEPT_RETRY_MODE,
TS_HTTP_CNTL_SET_INTERCEPT_RETRY_MODE
} TSHttpCntlType;
#define TS_HTTP_CNTL_OFF (void *)0
#define TS_HTTP_CNTL_ON (void *)1
/* usage:
void *onoff = 0;
TSHttpTxnCntl(.., TS_HTTP_CNTL_GET_LOGGING_MODE, &onoff);
if (onoff == TS_HTTP_CNTL_ON) ....
*/
tsapi TSReturnCode TSHttpTxnCntl(TSHttpTxn txnp, TSHttpCntlType cntl, void *data);
/* Protocols APIs */
tsapi void TSVConnCacheHttpInfoSet(TSVConn connp, TSCacheHttpInfo infop);
/* ICP freshness functions */
typedef int (*TSPluginFreshnessCalcFunc)(TSCont contp);
tsapi void TSICPFreshnessFuncSet(TSPluginFreshnessCalcFunc funcp);
tsapi TSReturnCode TSICPCachedReqGet(TSCont contp, TSMBuffer *bufp, TSMLoc *obj);
tsapi TSReturnCode TSICPCachedRespGet(TSCont contp, TSMBuffer *bufp, TSMLoc *obj);
/* The rest is from the old "froze" private API include, we should consider
moving some of these over to ts/ts.h as well. TODO */
/****************************************************************************
* Test if cache ready to accept request for a specific type of data
****************************************************************************/
tsapi TSReturnCode TSCacheDataTypeReady(TSCacheDataType type, int *is_ready);
/****************************************************************************
* When reenabling a txn in error, keep the connection open in case
* of keepalive.
****************************************************************************/
tsapi void TSHttpTxnClientKeepaliveSet(TSHttpTxn txnp, int set);
/****************************************************************************
* Allow to set the body of a POST request.
****************************************************************************/
tsapi void TSHttpTxnServerRequestBodySet(TSHttpTxn txnp, char *buf, int64_t buflength);
/* ===== High Resolution Time ===== */
#define TS_HRTIME_FOREVER (10 * TS_HRTIME_DECADE)
#define TS_HRTIME_DECADE (10 * TS_HRTIME_YEAR)
#define TS_HRTIME_YEAR (365 * TS_HRTIME_DAY + TS_HRTIME_DAY / 4)
#define TS_HRTIME_WEEK (7 * TS_HRTIME_DAY)
#define TS_HRTIME_DAY (24 * TS_HRTIME_HOUR)
#define TS_HRTIME_HOUR (60 * TS_HRTIME_MINUTE)
#define TS_HRTIME_MINUTE (60 * TS_HRTIME_SECOND)
#define TS_HRTIME_SECOND (1000 * TS_HRTIME_MSECOND)
#define TS_HRTIME_MSECOND (1000 * TS_HRTIME_USECOND)
#define TS_HRTIME_USECOND (1000 * TS_HRTIME_NSECOND)
#define TS_HRTIME_NSECOND (1LL)
#define TS_HRTIME_APPROX_SECONDS(_x) ((_x) >> 30) /* off by 7.3% */
#define TS_HRTIME_APPROX_FACTOR (((float)(1 << 30)) / (((float)HRTIME_SECOND)))
/*
////////////////////////////////////////////////////////////////////
//
// Map from units to ts_hrtime values
//
////////////////////////////////////////////////////////////////////
*/
#define TS_HRTIME_YEARS(_x) ((_x)*TS_HRTIME_YEAR)
#define TS_HRTIME_WEEKS(_x) ((_x)*TS_HRTIME_WEEK)
#define TS_HRTIME_DAYS(_x) ((_x)*TS_HRTIME_DAY)
#define TS_HRTIME_HOURS(_x) ((_x)*TS_HRTIME_HOUR)
#define TS_HRTIME_MINUTES(_x) ((_x)*TS_HRTIME_MINUTE)
#define TS_HRTIME_SECONDS(_x) ((_x)*TS_HRTIME_SECOND)
#define TS_HRTIME_MSECONDS(_x) ((_x)*TS_HRTIME_MSECOND)
#define TS_HRTIME_USECONDS(_x) ((_x)*TS_HRTIME_USECOND)
#define TS_HRTIME_NSECONDS(_x) ((_x)*TS_HRTIME_NSECOND)
tsapi TSReturnCode TSHttpTxnCachedRespTimeGet(TSHttpTxn txnp, time_t *resp_time);
/* ===== Cache ===== */
tsapi TSReturnCode TSCacheKeyDataTypeSet(TSCacheKey key, TSCacheDataType type);
/* ===== Utility ===== */
/****************************************************************************
* Create a random number
* Return random integer between <X> and <Y>
****************************************************************************/
tsapi unsigned int TSrandom(void);
/****************************************************************************
* Create a random double
* Return random double between <X> and <Y>
****************************************************************************/
tsapi double TSdrandom(void);
/****************************************************************************
* Return Hi-resolution current time. (int64_t)
****************************************************************************/
tsapi TSHRTime TShrtime(void);
/* ===== CacheHttpInfo ===== */
tsapi TSCacheHttpInfo TSCacheHttpInfoCopy(TSCacheHttpInfo infop);
tsapi void TSCacheHttpInfoReqGet(TSCacheHttpInfo infop, TSMBuffer *bufp, TSMLoc *offset);
tsapi void TSCacheHttpInfoRespGet(TSCacheHttpInfo infop, TSMBuffer *bufp, TSMLoc *offset);
tsapi void TSCacheHttpInfoDestroy(TSCacheHttpInfo infop);
/* ===== ICP ===== */
tsapi void TSHttpIcpDynamicSet(int value);
/****************************************************************************
* TSHttpTxnCacheLookupCountGet
* Return: TS_SUCESS/TS_ERROR
****************************************************************************/
tsapi TSReturnCode TSHttpTxnCacheLookupCountGet(TSHttpTxn txnp, int *lookup_count);
tsapi TSReturnCode TSHttpTxnRedirectRequest(TSHttpTxn txnp, TSMBuffer bufp, TSMLoc url_loc);
tsapi TSReturnCode TSHttpTxnServerRespIgnore(TSHttpTxn txnp);
tsapi TSReturnCode TSHttpTxnShutDown(TSHttpTxn txnp, TSEvent event);
tsapi TSReturnCode TSHttpTxnCloseAfterResponse(TSHttpTxn txnp, int should_close);
/* TS-1996: These API swill be removed after v3.4.0 is cut. Do not use them! */
tsapi TSReturnCode TSHttpTxnNewCacheLookupDo(TSHttpTxn txnp, TSMBuffer bufp, TSMLoc url_loc);
tsapi TSReturnCode TSHttpTxnSecondUrlTryLock(TSHttpTxn txnp);
/****************************************************************************
* ??
* Return ??
****************************************************************************/
tsapi int TSHttpTxnClientReqIsServerStyle(TSHttpTxn txnp);
/****************************************************************************
* ??
* Return ??
****************************************************************************/
tsapi void TSHttpTxnOverwriteExpireTime(TSHttpTxn txnp, time_t expire_time);
/****************************************************************************
* ??
* Return ??
****************************************************************************/
tsapi TSReturnCode TSHttpTxnUpdateCachedObject(TSHttpTxn txnp);
/****************************************************************************
* ??
* TODO: This returns a LookingUp_t value, we need to SDK'ify it.
****************************************************************************/
tsapi int TSHttpTxnLookingUpTypeGet(TSHttpTxn txnp);
/**
Attempt to attach the contp continuation to sockets that have already been
opened by the traffic manager and defined as belonging to plugins (based on
records.config configuration). If a connection is successfully accepted,
the TS_EVENT_NET_ACCEPT is delivered to the continuation. The event
data will be a valid TSVConn bound to the accepted connection.
In order to configure such a socket, add the "plugin" keyword to a port
in proxy.config.http.server_ports like "8082:plugin"
Transparency/IP settings can also be defined, but a port cannot have
both the "ssl" or "plugin" keywords configured.
Need to update records.config comments on proxy.config.http.server_ports
when this option is promoted from experimental.
*/
tsapi TSReturnCode TSPluginDescriptorAccept(TSCont contp);
/**
Opens a network connection to the host specified by the 'to' sockaddr
spoofing the client addr to equal the 'from' sockaddr.
If the connection is successfully opened, contp
is called back with the event TS_EVENT_NET_CONNECT and the new
network vconnection will be passed in the event data parameter.
If the connection is not successful, contp is called back with
the event TS_EVENT_NET_CONNECT_FAILED.
Note: It is possible to receive TS_EVENT_NET_CONNECT
even if the connection failed, because of the implementation of
network sockets in the underlying operating system. There is an
exception: if a plugin tries to open a connection to a port on
its own host machine, then TS_EVENT_NET_CONNECT is sent only
if the connection is successfully opened. In general, however,
your plugin needs to look for an TS_EVENT_VCONN_WRITE_READY to
be sure that the connection is successfully opened.
@return TSAction which allows you to check if the connection is complete,
or cancel the attempt to connect.
*/
tsapi TSAction TSNetConnectTransparent(
TSCont contp, /**< continuation that is called back when the attempted net connection either succeeds or fails. */
struct sockaddr const *from, /**< Address to spoof as connection origin */
struct sockaddr const *to /**< Address to which to connect. */
);
/* ===== Matcher Utils ===== */
#define TS_MATCHER_LINE_INVALID 0
typedef struct tsapi_matcheline *TSMatcherLine;
/****************************************************************************
* ??
* Return
****************************************************************************/
tsapi char *TSMatcherReadIntoBuffer(char *file_name, int *file_len);
/****************************************************************************
* ??
* Return
****************************************************************************/
tsapi char *TSMatcherTokLine(char *buffer, char **last);
/****************************************************************************
* ??
* Return
****************************************************************************/
tsapi char *TSMatcherExtractIPRange(char *match_str, uint32_t *addr1, uint32_t *addr2);
/****************************************************************************
* ??
* Return
****************************************************************************/
tsapi TSMatcherLine TSMatcherLineCreate();
/****************************************************************************
* ??
* Return
****************************************************************************/
tsapi void TSMatcherLineDestroy(TSMatcherLine ml);
/****************************************************************************
* ??
* Return
****************************************************************************/
tsapi const char *TSMatcherParseSrcIPConfigLine(char *line, TSMatcherLine ml);
/****************************************************************************
* ??
* Return
****************************************************************************/
tsapi char *TSMatcherLineName(TSMatcherLine ml, int element);
/****************************************************************************
* ??
* Return
****************************************************************************/
tsapi char *TSMatcherLineValue(TSMatcherLine ml, int element);
/****************************************************************************
* Set a records.config integer variable
****************************************************************************/
tsapi TSReturnCode TSMgmtConfigIntSet(const char *var_name, TSMgmtInt value);
/* ----------------------------------------------------------------------
* Interfaces used by Wireless group
* ---------------------------------------------------------------------- */
#define TS_NET_EVENT_DATAGRAM_READ_COMPLETE TS_EVENT_INTERNAL_206
#define TS_NET_EVENT_DATAGRAM_READ_ERROR TS_EVENT_INTERNAL_207
#define TS_NET_EVENT_DATAGRAM_WRITE_COMPLETE TS_EVENT_INTERNAL_208
#define TS_NET_EVENT_DATAGRAM_WRITE_ERROR TS_EVENT_INTERNAL_209
#define TS_NET_EVENT_DATAGRAM_READ_READY TS_EVENT_INTERNAL_210
#define TS_NET_EVENT_DATAGRAM_OPEN TS_EVENT_INTERNAL_211
#define TS_NET_EVENT_DATAGRAM_ERROR TS_EVENT_INTERNAL_212
/*****************************************************************************
* Cluster RPC API support *
*****************************************************************************/
/*
* Usage notes:
* 1) User is responsible for marshalling and unmarshaling data.
* 2) RPC message incompatiblities due to different plugin versions
* must be dealt with by the user.
* 3) Upon receipt of a machine offline, no guarantees are made about
* messages sent prior to the machine offline.
* 4) A node transitioning to the online state in an active cluster,
* is assumed to have no prior knowledge of messages processed in
* the past.
* 5) Key point to reiterate, actions taken in the functions specified in
* TSAddClusterStatusFunction() and TSAddClusterRPCFunction() must
* be non-blocking (i.e. usage of TSMutexLock() and file i/o is
* not allowed).
* 6) TSSendClusterRPC() can only process TSClusterRPCMsg_t generated
* by TSAllocClusterRPCMsg(). Failure to adhere to this rule will
* result in heap corruption.
* 7) Messages sent via TSSendClusterRPC() must be at least 4 bytes in
* length.
* 8) The user is not provided with any alignment guarantees on the
* 'm_data' field in the TSClusterRPCMsg_t returned via
* TSAllocClusterRPCMsg(). Assume byte alignment.
* 9) TSSendClusterRPC() interface owns the memory and is responsible
* for freeing the memory.
* 10) RPC functions defined via TSAddClusterRPCFunction() own the
* memory when invoked and are responsible for freeing it via
* TSFreeRPCMsg().
*/
#define MAX_CLUSTER_NODES 256
typedef struct TSClusterRPCHandle {
int opaque[2];
} TSClusterRPCHandle_t;
typedef int TSClusterStatusHandle_t;
typedef int TSNodeHandle_t;
typedef struct TSClusterRPCMsg {
TSClusterRPCHandle_t m_handle;
char m_data[4];
} TSClusterRPCMsg_t;
typedef enum {
NODE_ONLINE = 1,
NODE_OFFLINE,
} TSNodeStatus_t;
typedef enum {
RPC_API_WIRELESS_F01 = 51,
RPC_API_WIRELESS_F02,
RPC_API_WIRELESS_F03,
RPC_API_WIRELESS_F04,
RPC_API_WIRELESS_F05,
RPC_API_WIRELESS_F06,
RPC_API_WIRELESS_F07,
RPC_API_WIRELESS_F08,
RPC_API_WIRELESS_F09,
RPC_API_WIRELESS_F10
} TSClusterRPCKey_t;
typedef void (*TSClusterRPCFunction)(TSNodeHandle_t *node, TSClusterRPCMsg_t *msg, int msg_data_len);
typedef void (*TSClusterStatusFunction)(TSNodeHandle_t *node, TSNodeStatus_t s);
/****************************************************************************
* Subscribe to node up/down status notification. *
* Return == 0 Success *
* Return != 0 Failure *
* contact: OXY, DY
****************************************************************************/
tsapi int TSAddClusterStatusFunction(TSClusterStatusFunction Status_Function, TSMutex m, TSClusterStatusHandle_t *h);
/****************************************************************************
* Cancel subscription to node up/down status notification. *
* Return == 0 Success *
* Return != 0 Failure *
* contact: OXY, DY
****************************************************************************/
tsapi int TSDeleteClusterStatusFunction(TSClusterStatusHandle_t *h);
/****************************************************************************
* Get the struct in_addr associated with the TSNodeHandle_t. *
* Return == 0 Success *
* Return != 0 Failure *
* contact: OXY, DY
****************************************************************************/
tsapi int TSNodeHandleToIPAddr(TSNodeHandle_t *h, struct in_addr *in);
/****************************************************************************
* Get the TSNodeHandle_t for the local node. *
* contact: OXY, DY
****************************************************************************/
tsapi void TSGetMyNodeHandle(TSNodeHandle_t *h);
/****************************************************************************
* Enable node up/down notification for subscription added via *
* TSAddClusterStatusFunction(). *
* contact: OXY, DY
****************************************************************************/
tsapi void TSEnableClusterStatusCallout(TSClusterStatusHandle_t *h);
/****************************************************************************
* Associate the given key with the given RPC function. *
* Return == 0 Success *
* Return != 0 Failure *
* contact: OXY, DY
****************************************************************************/
tsapi int TSAddClusterRPCFunction(TSClusterRPCKey_t k, TSClusterRPCFunction RPC_Function, TSClusterRPCHandle_t *h);
/****************************************************************************
* Delete the key to function association created via *
* TSAddClusterRPCFunction(). *
* Return == 0 Success *
* Return != 0 Failure *
* contact: OXY, DY
****************************************************************************/
tsapi int TSDeleteClusterRPCFunction(TSClusterRPCHandle_t *h);
/****************************************************************************
* Free TSClusterRPCMsg_t received via RPC function *
* contact: OXY, DY
****************************************************************************/
tsapi void TSFreeRPCMsg(TSClusterRPCMsg_t *msg, int msg_data_len);
/****************************************************************************
* Allocate TSClusterRPCMsg_t for use in TSSendClusterRPC() *
* Return != 0 Success *
* Return == 0 Allocation failed *
* contact: OXY, DY
****************************************************************************/
tsapi TSClusterRPCMsg_t *TSAllocClusterRPCMsg(TSClusterRPCHandle_t *h, int data_size);
/****************************************************************************
* Send the RPC message to the specified node. *
* Cluster frees the given memory on send. *
* RPC function frees memory on receive. *
* Return == 0 Success *
* Return != 0 Failure *
* contact: OXY, DY
****************************************************************************/
tsapi int TSSendClusterRPC(TSNodeHandle_t *nh, TSClusterRPCMsg_t *msg);
/*
This is for the prefetch APIs, this really has to be cleaned out. This is
some pretty seriously broken stuff, and we should decide whether it should
die and be redone properly. A few of the issues include:
* The hooks are not normal ATS continuations, just plain callbacks.
* The hooks are therefore not registered the normal way either...
* And thusly, there can only be one callback for each of the three
Prefetch "hooks".
* The example plugins don't compile, there are old / missing pieces.
*/
typedef enum {
TS_PREFETCH_UDP_BLAST = 0,
TS_PREFETCH_TCP_BLAST,
TS_PREFETCH_MULTICAST_BLAST,
} TSPrefetchBlastType;
typedef struct {
TSPrefetchBlastType type;
struct sockaddr_storage ip;
} TSPrefetchBlastData;
typedef enum {
TS_PREFETCH_OBJ_BUF_NOT_NEEDED = 0,
TS_PREFETCH_OBJ_BUF_NEEDED, /* The user wants the buffer but does not
want it to be transmitted to the child */
TS_PREFETCH_OBJ_BUF_NEEDED_N_TRANSMITTED /* The object should
be transmitted as well */
} TSPrefetchStatus;
/* return type for TSPrefetchHook */
typedef enum {
TS_PREFETCH_CONTINUE,
TS_PREFETCH_DISCONTINUE,
} TSPrefetchReturnCode;
/* prefetch hooks, which are *not* normal hooks (no continuations) */
typedef enum {
TS_PREFETCH_PRE_PARSE_HOOK,
/* This hook is invoked just before we begin to parse a document
request and response headers are available.
Return value: TS_PREFETCH_CONTINUE :continue parsing
TS_PREFETCH_DISCONTIUE: don't bother parser
*/
TS_PREFETCH_EMBEDDED_URL_HOOK,
/* This hook is invoked when a URL is extracted.
url_proto and url_response_proto contain the default protocols used
for sending the url and actual url object respectively to the child.
The hook can change thes to one of the 3 methods mentioned above.
Return value: TS_PREFETCH_CONTINUE : prefetch this url.
TS_PREFETCH_DISCONTIUE: don't bother prefetching this
url
*/
TS_PREFETCH_EMBEDDED_OBJECT_HOOK
/* This hook is invoked when the user wants to have access to the buffer
of the embedded object we prefetched. We pass in the buffer reader.
The reader contains the data in the format specified in the Prefetch
document (with 12 byte header etc).
It is the users responsibility to free the reader.
The only valid field in the PrefetchInfo structure object_buf_reader.
embedded_url, object_buf, object_buf_reader, and object_buf_status are
set in TSPrefetchInfo passed as arguments
*/
} TSPrefetchHookID;
/* This holds the main Prefetch information as used by the hook callbacks. */
typedef struct {
/*request header */
TSMBuffer request_buf;
TSMLoc request_loc;
/*response header */
TSMBuffer response_buf;
TSMLoc response_loc;
/*child ip addr in network order */
struct sockaddr_storage client_ip;
/*the embedded url parsed by the parser */
const char *embedded_url;
/* flag which says if a perticular embedded url is present in the cache */
int present_in_cache;
/* Reader for the buffer which contains the prefetched object */
TSIOBuffer object_buf;
TSIOBufferReader object_buf_reader;
/* This specifies if we need to invoke the OBJECT_HOOK and whether we
need to send the buffer to child as well
This should set inside EMBEDDED_URL_HOOK by the user
*/
int object_buf_status;
/** Method of sending data to child.
If set to @c MULTICAST_BLAST then the corresponding address
value must be set to a multicast address to use.
*/
TSPrefetchBlastData url_blast;
TSPrefetchBlastData url_response_blast;
} TSPrefetchInfo;
typedef TSPrefetchReturnCode (*TSPrefetchHook)(TSPrefetchHookID hook, TSPrefetchInfo *prefetch_info);
/* Registers a hook for the given hook_no.
A hook is already present, it is replace by hook_fn
return value 0 indicates success */
tsapi int TSPrefetchHookSet(int hook_no, TSPrefetchHook hook_fn);
/**
* Extended FetchSM's AIPs
*/
/*
* Create FetchSM, this API will enable stream IO automatically.
*
* @param contp: continuation to be callbacked.
* @param method: request method.
* @param url: scheme://host[:port]/path.
* @param version: client http version, eg: "HTTP/1.1".
* @param client_addr: client addr sent to log.
* @param flags: can be bitwise OR of several TSFetchFlags.
*
* return TSFetchSM which should be destroyed by TSFetchDestroy().
*/
tsapi TSFetchSM TSFetchCreate(TSCont contp, const char *method, const char *url, const char *version,
struct sockaddr const *client_addr, int flags);
/*
* Create FetchSM, this API will enable stream IO automatically.
*
* @param fetch_sm: returned value of TSFetchCreate().
* @param name: name of header.
* @param name_len: len of name.
* @param value: value of header.
* @param name_len: len of value.
*
* return TSFetchSM which should be destroyed by TSFetchDestroy().
*/
tsapi void TSFetchHeaderAdd(TSFetchSM fetch_sm, const char *name, int name_len, const char *value, int value_len);
/*
* Write data to FetchSM
*
* @param fetch_sm: returned value of TSFetchCreate().
* @param data/len: data to be written to fetch sm.
*/
tsapi void TSFetchWriteData(TSFetchSM fetch_sm, const void *data, size_t len);
/*
* Read up to *len* bytes from FetchSM into *buf*.
*
* @param fetch_sm: returned value of TSFetchCreate().
* @param buf/len: buffer to contain data from fetch sm.
*/
tsapi ssize_t TSFetchReadData(TSFetchSM fetch_sm, void *buf, size_t len);
/*
* Lanuch FetchSM to do http request, before calling this API,
* you should append http request header into fetch sm through
* TSFetchWriteData() API
*
* @param fetch_sm: comes from returned value of TSFetchCreate().
*/
tsapi void TSFetchLaunch(TSFetchSM fetch_sm);
/*
* Destroy FetchSM
*
* @param fetch_sm: returned value of TSFetchCreate().
*/
tsapi void TSFetchDestroy(TSFetchSM fetch_sm);
/*
* Set user-defined data in FetchSM
*/
tsapi void TSFetchUserDataSet(TSFetchSM fetch_sm, void *data);
/*
* Get user-defined data in FetchSM
*/
tsapi void *TSFetchUserDataGet(TSFetchSM fetch_sm);
/*
* Get client response hdr mbuffer
*/
tsapi TSMBuffer TSFetchRespHdrMBufGet(TSFetchSM fetch_sm);
/*
* Get client response hdr mloc
*/
tsapi TSMLoc TSFetchRespHdrMLocGet(TSFetchSM fetch_sm);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __TS_API_EXPERIMENTAL_H__ */