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

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


    from 5976cd611f remove ts_bwf.cc and update locations where its used 
(#10899)
     add 55de9bcbc6 Remove dependency of apicore on tscore (#10889)

No new revisions were added by this update.

Summary of changes:
 cmake/add_atsplugin.cmake                          |   2 +-
 .../internal-libraries/buffer-writer.en.rst        |   3 +-
 include/api/Assert.h                               |  56 ++++++
 include/{ts => api}/DbgCtl.h                       |  27 ++-
 include/api/Metrics.h                              |  18 +-
 include/{tscore => api}/SourceLocation.h           |   0
 include/{tscpp/util => api}/ts_bw_format.h         |   0
 include/{tscpp/util => api}/ts_diag_levels.h       |   0
 include/{tscpp/util => api}/ts_errata.h            |   4 +-
 include/iocore/cache/CacheEvacuateDocVC.h          |   2 +-
 include/iocore/eventsystem/MIOBufferWriter.h       |   2 +-
 include/iocore/net/SNIActionItem.h                 |   2 +-
 include/mgmt/rpc/handlers/common/ErrorUtils.h      |   3 +-
 include/mgmt/rpc/server/IPCSocketServer.h          |   2 +-
 include/proxy/http/HttpConfig.h                    |   2 +-
 include/proxy/http/HttpDebugNames.h                |   1 -
 include/records/RecYAMLDefs.h                      |   2 +-
 include/shared/rpc/RPCRequests.h                   |   2 +-
 include/ts/ts.h                                    |   2 +-
 include/tscore/CryptoHash.h                        |   2 +-
 include/tscore/Diags.h                             |   4 +-
 include/tscore/DiagsTypes.h                        |  22 ++-
 include/tscore/History.h                           |   2 +-
 include/tscore/LogMessage.h                        |   2 +-
 include/tscpp/util/ts_bw.h                         |  24 ---
 plugins/cache_promote/policy.cc                    |   2 +-
 plugins/esi/fetcher/CMakeLists.txt                 |   2 +-
 plugins/experimental/maxmind_acl/CMakeLists.txt    |   6 +-
 plugins/experimental/money_trace/money_trace.cc    |   2 +-
 plugins/experimental/sslheaders/CMakeLists.txt     |   4 +-
 plugins/experimental/url_sig/url_sig.cc            |   7 -
 plugins/header_rewrite/CMakeLists.txt              |   7 +-
 plugins/remap_stats/remap_stats.cc                 |   2 +-
 plugins/s3_auth/unit_tests/CMakeLists.txt          |   2 +-
 plugins/slice/unit-tests/CMakeLists.txt            |   6 +-
 .../private/SSLProxySession.cc => api/Assert.cc}   |  25 ++-
 src/api/CMakeLists.txt                             |  27 ++-
 src/api/DbgCtl.cc                                  | 212 +++++++++++++++++++--
 src/api/Metrics.cc                                 |   7 +-
 src/{tscore => api}/SourceLocation.cc              |   8 +-
 src/{tscpp/util => api}/ts_diags.cc                |   4 +-
 src/iocore/cache/CacheEvacuateDocVC.cc             |   2 +-
 src/iocore/cache/CacheVC.cc                        |   2 +-
 src/iocore/dns/P_DNSProcessor.h                    |   2 +-
 src/iocore/hostdb/HostDB.cc                        |   2 +-
 src/iocore/net/ConnectionTracker.cc                |   2 +-
 src/iocore/net/P_SSLUtils.h                        |   2 +-
 src/iocore/net/P_Socks.h                           |   2 +-
 src/iocore/net/ProxyProtocol.cc                    |   1 -
 .../rpc/jsonrpc/unit_tests/test_basic_protocol.cc  |   2 +-
 src/mgmt/rpc/server/IPCSocketServer.cc             |   2 +-
 src/proxy/HostStatus.cc                            |   2 +-
 src/proxy/IPAllow.cc                               |   2 +-
 src/proxy/http/Http1ServerSession.cc               |   2 +-
 src/proxy/http/HttpSM.cc                           |   2 +-
 src/proxy/http/HttpTransact.cc                     |   2 +-
 src/proxy/http/HttpTransactHeaders.cc              |   1 -
 src/proxy/logging/LogBuffer.cc                     |   2 +-
 src/proxy/logging/LogFilter.cc                     |   2 +-
 src/proxy/logging/LogUtils.cc                      |   2 +-
 src/records/RecCore.cc                             |   2 +-
 src/records/unit_tests/test_RecHttp.cc             |   1 -
 src/records/unit_tests/unit_test_main.cc           |   1 -
 src/shared/rpc/IPCSocketClient.cc                  |   2 +-
 src/traffic_cache_tool/CacheDefs.h                 |   2 +-
 src/traffic_cache_tool/CacheTool.cc                |   1 -
 src/traffic_ctl/CtrlPrinters.cc                    |   2 +-
 src/traffic_layout/info.cc                         |   1 -
 src/traffic_logstats/CMakeLists.txt                |   4 +-
 src/tscore/CMakeLists.txt                          |   1 -
 src/tscore/Diags.cc                                | 124 +-----------
 src/tscore/ink_assert.cc                           |   2 -
 src/tscore/unit_tests/test_History.cc              |   2 +-
 src/tscpp/util/CMakeLists.txt                      |   6 +-
 src/tscpp/util/YamlCfg.cc                          |   2 +-
 tests/CMakeLists.txt                               |   2 +-
 .../jsonrpc/plugins/jsonrpc_plugin_handler_test.cc |   2 +-
 77 files changed, 415 insertions(+), 287 deletions(-)
 create mode 100644 include/api/Assert.h
 rename include/{ts => api}/DbgCtl.h (75%)
 rename include/{tscore => api}/SourceLocation.h (100%)
 rename include/{tscpp/util => api}/ts_bw_format.h (100%)
 rename include/{tscpp/util => api}/ts_diag_levels.h (100%)
 rename include/{tscpp/util => api}/ts_errata.h (96%)
 delete mode 100644 include/tscpp/util/ts_bw.h
 copy src/{proxy/private/SSLProxySession.cc => api/Assert.cc} (67%)
 rename src/{tscore => api}/SourceLocation.cc (94%)
 rename src/{tscpp/util => api}/ts_diags.cc (94%)

Reply via email to