HTTP/2 Protocol Support Guide
Overview
Toron includes native HTTP/2 (RFC 7540) protocol support with cleartext h2c prior knowledge preface detection, stream multiplexing, and physical socket address binding.
Configuration in config.yaml
Configure HTTP/2 parameters under the server.http2 section of config.yaml:
server:
host: "0.0.0.0"
port: 8080
http2:
enabled: true
max_concurrent_streams: 250
max_frame_size: 16384
allow_h2c: true
Features
- Automatic Protocol Detection: Detects HTTP/2 connection preface (
PRI * HTTP/2.0...) and routes streams to the HTTP/2 engine while preserving HTTP/1.1 fallback transparently. - Multiplexing & Frame Tuning: Stream limits (
max_concurrent_streams) and frame sizes (max_frame_size) protect against resource exhaustion DoS attacks. - Physical RemoteAddr Binding & Ingress Anti-Spoofing: Multiplexed HTTP/2 streams bind the physical TCP client socket address (
r.RemoteAddr) at transport ingress intohttpparser.Request.RemoteAddr, establishing tamper-proof client identity parity with HTTP/1.1 across WAF IP ACL, Rate Limiting, Internal Management APIs, Reverse Proxying, and Structured Logging (SEC-31,REQ-092,ADR-087).