pluginized-protocols / picotcpls

TCPLS implementation using a TLS 1.3 implementation in C (master supports RFC8446 as well as draft-26, -27, -28) -- Published in ACM CoNEXT'21 -- Best Community Award
15 stars 5 forks source link

Buffer variable len TCP options on a per-stream buffer #9

Closed frochet closed 3 years ago

frochet commented 4 years ago

Currently, if we send an option of a variable length (e.g., a eBPF bytecode), TCPLS buffer the option using a connection-level buffer.

We need to move this logic to a stream-level buffer, such that we may be able to send varlen option of different streams, at the same time.