Live data from Hacker News

Hosting a Public Website on MS-DOS (2022)

fsturmat.net

1–10 of 54 posts

Re: Hosting a Public Website on MS-DOS (2022)

#2
> That's because DOS webservers can only keep track of 8- or 16-ish concurrent requests

Is that because of the lack of official 'forking'/threading, or due to the limitations of whatever TCP stack is being used for the listen() / accept() calls? (or something else?)

Re: Hosting a Public Website on MS-DOS (2022)

#4

> That's because DOS webservers can only keep track of 8- or 16-ish concurrent requests Is that because of the lack of official 'forking'/threading, or due to the limitations of whatever TCP stack is being used for the listen() / accept() calls? (or something else?)

I wrote a web server for CP/M, the issue there was that the C library could only hold the state of a small number of FILE* at a time, because they were allocated statically.
Post reply on HN