Allright, I'll tell you
exactly what i'm trying to do, and better yet, i'll tell you why.
I'm trying to make a server-sided addon that will receive commands in the form of text from my webserver (password-protected to prevent abuse).
These commands will be used to change preferences, create/edit functions, etc. on the server. No, it is not an eval server. It will not allow eval.
I'm doing specifically that because my computer and network cannot host a network connection. In short, I can't forward any
*new* ports.
Which means that both the similar addons to what i'm describing won't work for me.
So..
Do you have to use HTTP? If you need a permanent connection, there would be way more efficient solutions.
I don't think there are any other ways to connect to a webserver than HTTP, so unless i'm wrong on that part, Yes. I have to use HTTP.
You're probably thinking of the keep-alive directive. This isn't meant to be used for what you're considering, it's mostly to speed up the download of multiple items from a single server.
Oh.
It wouldn't be that bad to just poll the server every minute
The thing is, once every minute is not that fast, at least, not as fast as I need this to be.