-
Notifications
You must be signed in to change notification settings - Fork 44
Description
Hi, and thank you for this fork, along with some of @jkent's cmake stuff I'm up and running!
I'm wondering about concurrency and access to the sendBuf.
I noticed some concurrency lock stuff around websocket broadcast, and it looks like the other sending functions don't have that, do they assume to only be called from inside a cgi handler?
Also poking around a bit I noticed the static send buffer changes. It can consume quite a lot of memory (maxConnections * HTTPD_MAX_SENDBUFF_LEN), but I like that it's not going to fragment memory.
If responses are assumed to be composed in callbacks only, is it possible for more than 1 sendBuf to be written to simultaneously from the server task? It doesn't look like there's an intermediate action that could cause writes to sendBuf that don't also get flushed.
It looks like every write to the sendBuf is protected by httpdPlatLock (even the async websocket broadcast). It looks like it is fully synchronous, and you won't have other tasks trying to mutate it simultaneously).
I'm thinking about trying a single static sendbuf per HttpdInstance.
Does this sound like it could work? Am I missing something?