"I would go into this assuming that either there is something else on the page with that path (or an errant javascript request)."
There is no JavaScript present. I'm 100% certain this behavior is intentional. I've responded to the unexpected behavior (which originally caused my application to crash under those circumstances) by yielding resource generators in the specified order which ultimately upgraded the connection to HTTP/3. I can repeat that behavior, log the same path, and get a new result. I don't know what else to say about it.
"But, again, HTTP/3 does not chain together requests as a single path in the way that you described."
I wonder if that path might be how the HTTP3 request gets translated to the WSGI app. Basically... something between the Cloudflare tunnel and my WSGI app.
"Also, I'm writing a HTTP server at the moment, so I'm pretty familiar with the protocols."
Very fun! This is my next task actually. I have the TCP/IP series arriving next week and already have Unix Network Programming on the shelf.
Mine is in C++, and is part of a larger project. I've thoroughly enjoyed the process!
So far, I've written a scripting language, a thread pool worker queue, and now I'm working on the HTTP server. I'm writing them as libraries (in the same way that libpng or libjpeg exist as libraries). I have a few more "steps" before gluing it all together into a larger project, but it's taking shape!
There's a simple pleasure in getting to the fundamentals of computing, away from the layer upon layer of abstraction that plagues development today.
Comments
"I would go into this assuming that either there is something else on the page with that path (or an errant javascript request)."
There is no JavaScript present. I'm 100% certain this behavior is intentional. I've responded to the unexpected behavior (which originally caused my application to crash under those circumstances) by yielding resource generators in the specified order which ultimately upgraded the connection to HTTP/3. I can repeat that behavior, log the same path, and get a new result. I don't know what else to say about it.
"But, again, HTTP/3 does not chain together requests as a single path in the way that you described."
I wonder if that path might be how the HTTP3 request gets translated to the WSGI app. Basically... something between the Cloudflare tunnel and my WSGI app.
"Also, I'm writing a HTTP server at the moment, so I'm pretty familiar with the protocols."
Very fun! This is my next task actually. I have the TCP/IP series arriving next week and already have Unix Network Programming on the shelf.
Awesome! Good luck!
Mine is in C++, and is part of a larger project. I've thoroughly enjoyed the process!
So far, I've written a scripting language, a thread pool worker queue, and now I'm working on the HTTP server. I'm writing them as libraries (in the same way that libpng or libjpeg exist as libraries). I have a few more "steps" before gluing it all together into a larger project, but it's taking shape!
There's a simple pleasure in getting to the fundamentals of computing, away from the layer upon layer of abstraction that plagues development today.