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 2018/09/27 00:28:41 UTC

[trafficserver] branch quic-latest updated (904d2c8 -> 207946c)

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

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


    from 904d2c8  Cleanup: rename _state_common_receive_packet and _state_connection_established_process_packet
     add ca38e1c  Fix doc building warnings for recent plugin docs
     add 4028ea3  Fix libjansson & libcjose static or dynamic detection
     add 05ba3c1  Removes secret field from log statement
     add a523a62  Expand the post chunked tests.
     add 56366c2  Add warning of body_factory templates are not loaded due to missing dot file.
     add 1078ac9  Add a search path for Tcl
     add 2a3bc0b  Generally random code cleanup
     add afcbc7b  Runroot: make runroot accept defective yaml file
     add 5401e01c Fix typo of the nofiles ulimit to a sane number
     add 7dc16b1  Rewrite traffic_layout with ArgParser
     add 44caf60  Remove Bitops - apparently not used anywhere and should be replaced by std::bitset anyway.
     add b20cc8d  Removed headers that are not used
     add 2e73444  Adds Robots exclusion file
     add 207946c  Merge branch 'asf/master' into quic-latest

No new revisions were added by this update.

Summary of changes:
 build/tcl.m4                                      |   3 +-
 configure.ac                                      |  12 +-
 doc/admin-guide/files/storage.config.en.rst       |   2 +-
 doc/admin-guide/plugins/certifier.en.rst          |  39 +-
 doc/admin-guide/plugins/traffic_dump.en.rst       |   4 +-
 doc/appendices/command-line/traffic_layout.en.rst |   5 +-
 doc/robots.txt                                    |   9 +
 include/tscore/Bitops.h                           | 272 ------------
 include/tscore/I_Layout.h                         |  12 +-
 include/tscore/runroot.h                          |  10 +-
 plugins/s3_auth/s3_auth.cc                        |   4 +-
 proxy/TimeTrace.h                                 |  70 ----
 proxy/http/HttpBodyFactory.cc                     |   1 +
 proxy/http/remap/RemapPluginInfo.h                |   2 -
 proxy/http/remap/RemapProcessor.h                 |   4 -
 rc/trafficserver.in                               |   2 +-
 src/traffic_cache_tool/CacheStore.h               |  48 ---
 src/traffic_layout/engine.cc                      | 480 ++++++++--------------
 src/traffic_layout/engine.h                       |  65 +--
 src/traffic_layout/file_system.cc                 |  31 +-
 src/traffic_layout/file_system.h                  |   7 -
 src/traffic_layout/info.cc                        |   2 -
 src/traffic_layout/info.h                         |   2 +-
 src/traffic_layout/traffic_layout.cc              | 171 ++------
 src/traffic_server/traffic_server.cc              |  20 +-
 src/tscore/Bitops.cc                              |  42 --
 src/tscore/Layout.cc                              |  55 ++-
 src/tscore/Makefile.am                            |   2 -
 src/tscore/runroot.cc                             |  92 +++--
 tests/gold_tests/h2/http2.test.py                 |  30 +-
 tests/gold_tests/runroot/runroot_error.test.py    |  13 +-
 tests/gold_tests/runroot/runroot_init.test.py     |  10 +-
 tests/gold_tests/runroot/runroot_manager.test.py  |   6 +-
 tests/gold_tests/runroot/runroot_remove.test.py   |  12 +-
 tests/gold_tests/runroot/runroot_use.test.py      |   4 +-
 tests/gold_tests/runroot/runroot_verify.test.py   |   2 +-
 36 files changed, 427 insertions(+), 1118 deletions(-)
 create mode 100644 doc/robots.txt
 delete mode 100644 include/tscore/Bitops.h
 delete mode 100644 proxy/TimeTrace.h
 delete mode 100644 src/traffic_cache_tool/CacheStore.h
 delete mode 100644 src/tscore/Bitops.cc