You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ki...@apache.org on 2023/10/09 18:43:25 UTC

[trafficserver] branch master updated (0dfb832ff6 -> ff21aaf6de)

This is an automated email from the ASF dual-hosted git repository.

kichan pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


    from 0dfb832ff6 APIs to get the h2 error codes and a plugin to use them (#10570)
     add ff21aaf6de Add support for vconn start handler for lua plugin (#10574)

No new revisions were added by this update.

Summary of changes:
 doc/admin-guide/plugins/lua.en.rst                 |  94 +++++++++++++++
 plugins/lua/Makefile.inc                           |   1 +
 .../{test_client_socket.lua => test_vconn.lua}     |  36 +++---
 plugins/lua/ts_lua.cc                              |  89 ++++++++++++++
 plugins/lua/ts_lua_common.h                        |  17 +++
 plugins/lua/ts_lua_fetch.cc                        |   4 +
 plugins/lua/ts_lua_hook.cc                         |  10 ++
 plugins/lua/ts_lua_http.cc                         | 131 +++++++++++++++++++++
 plugins/lua/ts_lua_http_intercept.cc               |   2 +
 plugins/lua/ts_lua_misc.cc                         |   6 +
 plugins/lua/ts_lua_util.cc                         |  92 +++++++++++++++
 plugins/lua/ts_lua_util.h                          |  25 +++-
 plugins/lua/ts_lua_vconn.cc                        | 103 ++++++++++++++++
 plugins/lua/{ts_lua_log.h => ts_lua_vconn.h}       |   4 +-
 14 files changed, 589 insertions(+), 25 deletions(-)
 copy plugins/lua/example/{test_client_socket.lua => test_vconn.lua} (51%)
 create mode 100644 plugins/lua/ts_lua_vconn.cc
 copy plugins/lua/{ts_lua_log.h => ts_lua_vconn.h} (94%)