## Feature Description Support TLS and ALPN negotiation for secure HTTP2 connections. ## Problem/Use Case Most HTTP2 deployments require secure negotiation via TLS and ALPN (Application-Layer Protocol Negotiation). ## Proposed Solution - Implement ALPN support for "h2" token during TLS handshake - Ensure compatibility with common TLS libraries ## Code Example ```kotlin server.startTls(alpnProtocols = listOf("h2")) ``` ## Alternatives Considered - No ALPN/TLS (limits interoperability) ## Additional Context - Would this be a breaking change? No - Priority: High - Related to #3 HTTP2 support ## Related Issues/PRs - #3 HTTP2 support
Feature Description
Support TLS and ALPN negotiation for secure HTTP2 connections.
Problem/Use Case
Most HTTP2 deployments require secure negotiation via TLS and ALPN (Application-Layer Protocol Negotiation).
Proposed Solution
Code Example
Alternatives Considered
Additional Context
Related Issues/PRs