You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ma...@apache.org on 2020/07/31 01:26:08 UTC

[trafficserver] branch quic-latest updated (50937c0 -> 84e4c8e)

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

maskit pushed a change to branch quic-latest
in repository https://gitbox.apache.org/repos/asf/trafficserver.git.


    from 50937c0  Merge branch 'master' into quic-latest
     add 9b27a8a  Avoid unnecessary copying of STL map for QUICTPConfigQCP class. (#7039)
     add e6634f7  Move to denylists and allowlists (#7034)
     add fef5098  Removes FIXME that is unlikely to be fixed at this point in the project history (#7058)
     add d7e35e4  Fixed CLIENT-URL to use the pristine client URL (#7050)
     add d3875eb  Fix proxy.process.http.current_client_connections (#7056)
     add b2aef61  Quote out lists of servers and domains in splitdns.config example (#7057)
     add 1b31559  Document proxy.config.http.cache.post_method. (#7060)
     add 0b9195f  Don't make an error on receiving retransmitted handshake data (#7061)
     add 3087f16  Fix a crash on active timeout on QUIC connections (#7059)
     add 84e4c8e  Merge branch 'master' into quic-latest

No new revisions were added by this update.

Summary of changes:
 doc/.tx/config                                     |  36 ++++++++++-----------
 .../configuration/proxy-protocol.en.rst            |   4 +--
 doc/admin-guide/files/records.config.en.rst        |   6 ++++
 doc/admin-guide/files/splitdns.config.en.rst       |   2 +-
 doc/admin-guide/plugins/cachekey.en.rst            |  22 ++++++-------
 doc/admin-guide/plugins/stats_over_http.en.rst     |   6 ++--
 doc/developer-guide/api/functions/TSAPI.en.rst     |   4 +--
 doc/developer-guide/introduction/index.en.rst      |   4 +--
 ...ccessing-the-transaction-being-processed.en.rst |   8 ++---
 .../{blacklist => denylist}/index.en.rst           |  34 +++++++++----------
 .../setting-a-global-hook.en.rst                   |   6 ++--
 .../setting-up-a-transaction-hook.en.rst           |  20 ++++++------
 .../{blacklist => denylist}/source-code.en.rst     |  16 ++++-----
 .../working-with-http-header-functions.en.rst      |  10 +++---
 .../plugins/example-plugins/index.en.rst           |   4 +--
 .../plugins/getting-started/index.en.rst           |   8 ++---
 .../hooks-and-transactions/adding-hooks.en.rst     |   4 +--
 .../trafficserver-http-header-system.en.rst        |   2 +-
 doc/developer-guide/plugins/introduction.en.rst    |  28 ++++++++--------
 doc/developer-guide/plugins/mutexes.en.rst         |  10 +++---
 .../plugins/plugin-management/logging-api.en.rst   |  26 +++++++--------
 .../images/sdk/{blacklist75.jpg => denylist.jpg}   | Bin 93834 -> 73371 bytes
 example/plugins/c-api/Makefile.am                  |   8 ++---
 example/plugins/c-api/blocklist_1/readme.txt       |  17 ----------
 .../blocklist_0.c => denylist_0/denylist_0.c}      |  12 +++----
 .../blocklist.txt => denylist_1/denylist.txt}      |   0
 .../blocklist_1.c => denylist_1/denylist_1.c}      |  34 +++++++++----------
 example/plugins/c-api/denylist_1/readme.txt        |  17 ++++++++++
 iocore/net/P_QUICNetVConnection.h                  |   1 +
 iocore/net/QUICNetVConnection.cc                   |  22 ++++++++++++-
 iocore/net/quic/QUICTLS.cc                         |   2 +-
 iocore/net/quic/QUICTypes.h                        |  30 ++++++++---------
 plugins/cachekey/configs.cc                        |  20 ++++++------
 plugins/cachekey/configs.h                         |   6 ++--
 plugins/experimental/access_control/config.cc      |  16 ++++-----
 plugins/experimental/access_control/config.h       |   4 +--
 plugins/header_rewrite/conditions.cc               |  30 +++++++++--------
 proxy/http/Http1ClientSession.cc                   |   8 ++---
 proxy/http/remap/UrlMappingPathIndex.h             |   2 +-
 .../gold/header_rewrite-client.gold}               |   5 ++-
 ...write.test.py => header_rewrite_client.test.py} |  17 +++++-----
 .../header_rewrite/rules/rule_client.conf          |   9 +++---
 42 files changed, 272 insertions(+), 248 deletions(-)
 rename doc/developer-guide/plugins/example-plugins/{blacklist => denylist}/accessing-the-transaction-being-processed.en.rst (91%)
 rename doc/developer-guide/plugins/example-plugins/{blacklist => denylist}/index.en.rst (75%)
 rename doc/developer-guide/plugins/example-plugins/{blacklist => denylist}/setting-a-global-hook.en.rst (86%)
 rename doc/developer-guide/plugins/example-plugins/{blacklist => denylist}/setting-up-a-transaction-hook.en.rst (82%)
 rename doc/developer-guide/plugins/example-plugins/{blacklist => denylist}/source-code.en.rst (72%)
 rename doc/developer-guide/plugins/example-plugins/{blacklist => denylist}/working-with-http-header-functions.en.rst (86%)
 rename doc/static/images/sdk/{blacklist75.jpg => denylist.jpg} (77%)
 delete mode 100644 example/plugins/c-api/blocklist_1/readme.txt
 rename example/plugins/c-api/{blocklist_0/blocklist_0.c => denylist_0/denylist_0.c} (93%)
 rename example/plugins/c-api/{blocklist_1/blocklist.txt => denylist_1/denylist.txt} (100%)
 rename example/plugins/c-api/{blocklist_1/blocklist_1.c => denylist_1/denylist_1.c} (89%)
 create mode 100644 example/plugins/c-api/denylist_1/readme.txt
 copy tests/gold_tests/{remap/gold/remap-200.gold => pluginTest/header_rewrite/gold/header_rewrite-client.gold} (74%)
 copy tests/gold_tests/pluginTest/header_rewrite/{header_rewrite.test.py => header_rewrite_client.test.py} (74%)
 copy plugins/header_rewrite/Examples/Force-close => tests/gold_tests/pluginTest/header_rewrite/rules/rule_client.conf (83%)