trafficserver
trafficserver copied to clipboard
Apache Traffic Server™ is a fast, scalable and extensible HTTP/1.1 and HTTP/2 compliant caching proxy server.
This PR adds a build option (`--with-quiche`) and code to use quiche as QUIC implementation instead of the original our own QUIC implementation. The code for the original implementation is...
As discussed yesterday in the meeting, this will replace #8708
The lifetime of mutex used for TS continuations is controlled by the number of referring continuations, it must not be destroyed with TSMutextDestroy(). Also has some very minor cleanup of...
The document says that when `cache` is set to `true`, there will be both compressed and uncompressed versions of the content in the cache. that means ,when a client request...
This seems to have eliminated some ERROR diags we were seeing in Yahoo Prod when doing config reloads. The SSLSecret public functions no longer return pointers into the unorded_map of...
The below message shows up when I run traffic_server on lldb and request to `/_stats` for stats-over-http plugin. ``` 2021-07-21 14:24:24.026916+0900 traffic_server[79577:4784805] dynamic_cast error 2: One or more of the...
Hi! I'm running ATS 9.0.2 in docker built from source and while trying to setup stats_over_http plugin and blocking the calls in remap.config I ran into some problems where it...
This PR will fail a cache read if the content-length in the cached response header does not match the cached object size.
While trying to run ATS in a Docker container, I thought I'd make use of #7937 as a nice way to handle logs. So I built branch 9.2.x, specifically 15bea4dd946c8cb6fc2000a4b31cf4f2f261b29d...
I use a Linux VM as my dev environment on my MacBook that has M1 chip (arm64 arch), and the pre-built clang-format binary which is used by `make clang-format` doesn't...