Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions doc/admin-guide/plugins/lua.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4228,28 +4228,6 @@ ts.http.server_packet_mark_set
**description:** This function can be used to set packet mark for server connection.


:ref:`TOP <admin-plugins-ts-lua>`

ts.http.client_packet_tos_set
-----------------------------
**syntax:** *ts.http.client_packet_tos_set(NUMBER)*

**context:** do_remap/do_os_response or do_global_* or later.

**description:** This function can be used to set packet tos for client connection.


:ref:`TOP <admin-plugins-ts-lua>`

ts.http.server_packet_tos_set
-----------------------------
**syntax:** *ts.http.server_packet_tos_set(NUMBER)*

**context:** do_remap/do_os_response or do_global_* or later.

**description:** This function can be used to set packet tos for server connection.


:ref:`TOP <admin-plugins-ts-lua>`

ts.http.client_packet_dscp_set
Expand Down

This file was deleted.

This file was deleted.

8 changes: 0 additions & 8 deletions doc/developer-guide/api/types/TSRecordType.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,6 @@ Synopsis

.. c:enumerator:: TS_RECORDTYPE_NODE

.. c:enumerator:: TS_RECORDTYPE_CLUSTER

Deprecated - shared among a cluster.

.. c:enumerator:: TS_RECORDTYPE_LOCAL

Deprecated - not shared among a cluster.

.. c:enumerator:: TS_RECORDTYPE_PLUGIN

Created by a plugin.
Expand Down

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion include/ts/apidefs.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,6 @@ typedef enum {
TS_RECORDTYPE_CONFIG = 0x01,
TS_RECORDTYPE_PROCESS = 0x02,
TS_RECORDTYPE_NODE = 0x04,
TS_RECORDTYPE_LOCAL = 0x10,
TS_RECORDTYPE_PLUGIN = 0x20,
TS_RECORDTYPE_ALL = 0x3F
} TSRecordType;
Expand Down
6 changes: 0 additions & 6 deletions include/ts/experimental.h
Original file line number Diff line number Diff line change
Expand Up @@ -324,12 +324,6 @@ tsapi char *TSMatcherLineName(TSMatcherLine ml, int element);
****************************************************************************/
tsapi char *TSMatcherLineValue(TSMatcherLine ml, int element);

/****************************************************************************
* Set a records.yaml integer variable
****************************************************************************/
// DEPRECATED
tsapi TSReturnCode TSMgmtConfigIntSet(const char *var_name, TSMgmtInt value);

tsapi TSReturnCode TSMgmtConfigFileAdd(const char *parent, const char *fileName);
/* ----------------------------------------------------------------------
* Interfaces used by Wireless group
Expand Down
27 changes: 0 additions & 27 deletions include/ts/ts.h
Original file line number Diff line number Diff line change
Expand Up @@ -1520,33 +1520,6 @@ tsapi TSReturnCode TSHttpTxnClientPacketMarkSet(TSHttpTxn txnp, int mark);
*/
tsapi TSReturnCode TSHttpTxnServerPacketMarkSet(TSHttpTxn txnp, int mark);

/** Change packet TOS for the client side connection
*
@note The change takes effect immediately

@note TOS is deprecated and replaced by DSCP, this is still used to
set DSCP however the first 2 bits of this value will be ignored as
they now belong to the ECN field.

@return TS_SUCCESS if the client connection was modified
*/
tsapi TSReturnCode TSHttpTxnClientPacketTosSet(TSHttpTxn txnp, int tos);

/** Change packet TOS for the server side connection
*

@note The change takes effect immediately, if no OS connection has been
made, then this sets the mark that will be used IF an OS connection
is established

@note TOS is deprecated and replaced by DSCP, this is still used to
set DSCP however the first 2 bits of this value will be ignored as
they now belong to the ECN field.

@return TS_SUCCESS if the (future?) server connection was modified
*/
tsapi TSReturnCode TSHttpTxnServerPacketTosSet(TSHttpTxn txnp, int tos);

/** Change packet DSCP for the client side connection
*
@note The change takes effect immediately
Expand Down
Loading