trafficserver
trafficserver copied to clipboard
Apache Traffic Server™ is a fast, scalable and extensible HTTP/1.1 and HTTP/2 compliant caching proxy server.
UUID values are 128 bit values designed to be univerally unique identifiers across all practical uses and environments. Snowflake ID values are 64 bit values that are designed with a...
We have `proxy.process.http.incoming_requests` and `proxy.process.https.incoming_requests`. However, http is all requests and https is just the requests that are TLS. Maybe rename http to total or and add a stat for...
https://github.com/apache/trafficserver/blob/28710feefbcd5f10ce5def123f6fbd3e09fc1b79/src/mgmt/rpc/server/IPCSocketServer.cc#L416-L416 Fix the issue need to ensure that the comparison logic does not rely on unsigned subtraction, which can underflow. Instead, we can directly compare `bw.stored()` with `_max_req_size` to determine...
https://github.com/apache/trafficserver/blob/28710feefbcd5f10ce5def123f6fbd3e09fc1b79/src/tscore/ink_cap.cc#L407-L410 Fix the TOCTOU race condition, we should replace the `chmod` call with `fchmod`, which operates on a file descriptor rather than a file path. This ensures that the permissions...
This is on version 9.2.10 ``` Fatal: HttpTunnel.cc:991: failed assertion `c->skip_bytes buffer_reader->read_avail()` ``` backtrace ``` #0 __pthread_kill_implementation (no_tid=0, signo=6, threadid=) at ./nptl/pthread_kill.c:44 #1 __pthread_kill_internal (signo=6, threadid=) at ./nptl/pthread_kill.c:78 #2 __GI___pthread_kill...
The goal here is to provide some cache management functionality to Cripts, allowing for a prototype implementation of the cache-groups RFC draft. In addition,t this - cleans up the notion...
- Implemented Zstandard (zstd) compression in the compress plugin. - Updated CMake configuration to include zstd. - Enhanced the normalization of the Accept-Encoding header to support zstd. - Added tests...
Updated testing before this PR: #12248
Make URL string available as an argument for milestone_ua_read_header_done.
Alternative approach of https://github.com/apache/trafficserver/pull/12257.