Does Ktor CIO implement request pipelining? IE, re...
# ktor
j
Does Ktor CIO implement request pipelining? IE, reusing the same connection for multiple requests? If so, I think I may have another vulnerability in Ktor.
Copy code
pipelineMaxSize
So, yes it does. Looks like I'm going to need to write another email 😆
c
Note that pipelining is disabled by default
Since nobody cares and knows what is it, I’d say nobody enables it 🙂
j
@cy It looks like it defaults to 20. When I'm thinking of HTTP pipelining I'm referring to this: https://en.wikipedia.org/wiki/HTTP_pipelining If you say it's disabled by default, how does someone enable it?
Oh, ktor supports
Keep-Alive
so this will probably still work
c
There is
pipelining
option
it is false by default
j
@cy That's a client configuration, not a server config
c
In server you can’t disable it. So, what’s the problem with it?
j
I'll DM you