Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/trafficserver
Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/3fb05190 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/3fb05190 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/3fb05190 Branch: refs/heads/5.0.x Commit: 3fb05190ff96689e06f2a08a4ef57915db31e705 Parents: a486036 9d12a5d Author: Brian Geffon <[email protected]> Authored: Wed Apr 16 13:13:41 2014 -0700 Committer: Brian Geffon <[email protected]> Committed: Wed Apr 16 13:13:41 2014 -0700 ---------------------------------------------------------------------- CHANGES | 7 + configure.ac | 12 +- doc/reference/plugins/index.en.rst | 1 + doc/reference/plugins/tcpinfo.en.rst | 126 ++++++ doc/reference/plugins/ts_lua.en.rst | 77 ++-- doc/sdk/actions-guide.en.rst | 4 +- doc/sdk/actions-guide/hosts-lookup-api.en.rst | 4 +- doc/sdk/http-headers/http-headers.en.rst | 46 +- doc/sdk/http-headers/mime-headers.en.rst | 84 ++-- doc/sdk/http-headers/urls.en.rst | 56 +-- .../adding-hooks.en.rst | 10 +- .../http-sessions.en.rst | 4 +- .../http-transactions.en.rst | 34 +- .../initiate-http-connection.en.rst | 2 +- .../intercepting-http-transactions.en.rst | 2 +- doc/sdk/io-guide.en.rst | 16 +- doc/sdk/io-guide/io-buffers.en.rst | 2 +- doc/sdk/io-guide/transformations.en.rst | 4 +- doc/sdk/io-guide/vios.en.rst | 22 +- doc/sdk/misc-interface-guide.en.rst | 10 +- .../memory-allocation.en.rst | 10 +- .../thread-functions.en.rst | 8 +- .../misc-interface-guide/tsfopen-family.en.rst | 12 +- doc/sdk/mutex-guide.en.rst | 16 +- doc/sdk/plugin-configurations.en.rst | 8 +- .../guide-to-the-logging-api.en.rst | 16 +- ...trafficserver-settings-and-statistics.en.rst | 10 +- example/include_other/macro.h | 75 ---- lib/Makefile.am | 4 +- plugins/Makefile.am | 1 + plugins/experimental/Makefile.am | 1 - plugins/experimental/tcp_info/Makefile.am | 26 -- plugins/experimental/tcp_info/README | 76 ---- plugins/experimental/tcp_info/tcp_info.cc | 358 ---------------- plugins/experimental/tcp_info/tcp_info.config | 3 - plugins/experimental/ts_lua/example/hdr.lua | 37 -- .../ts_lua/example/test_global_hdr.lua | 37 ++ .../experimental/ts_lua/example/test_hdr.lua | 37 ++ plugins/experimental/ts_lua/ts_lua.c | 155 ++++++- plugins/experimental/ts_lua/ts_lua_common.h | 8 + plugins/experimental/ts_lua/ts_lua_util.c | 9 + plugins/tcpinfo/Makefile.am | 22 + plugins/tcpinfo/tcpinfo.cc | 424 +++++++++++++++++++ proxy/PluginVC.h | 5 - proxy/api/ts/ts.h | 4 +- 45 files changed, 1078 insertions(+), 807 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/3fb05190/CHANGES ---------------------------------------------------------------------- diff --cc CHANGES index 8cb41d9,b952ea0..a2b07b9 --- a/CHANGES +++ b/CHANGES @@@ -1,8 -1,12 +1,14 @@@ -*- coding: utf-8 -*- Changes with Apache Traffic Server 5.0.0 + + *) [TS-2720] Fix bug with request transformations in C++ api + *) [TS-2714] Promote the tcp_info plugin to stable as 'tcpinfo'. + + *) [TS-2708] Refactor and modernize the tcp_info plugin. + + *) [TS-2555] Adding global plugin support to ts_lua plugin. + *) [TS-2717] header-rewrite set-redirect not working. Author: Igor Brezac
