summaryrefslogtreecommitdiff
path: root/proxy_ustats.c
Commit message (Collapse)AuthorAgeFilesLines
* proxy: restrict functions for lua config vs routedormando2023-03-261-7/+2
| | | | | | | | | | Also changes the way the global context and thread contexts are fetched from lua; via the VM extra space instead of upvalues, which is a little faster and more universal. It was always erroneous to run a lot of the config functions from routes and vice versa, but there was no consistent strictness so users could get into trouble.
* proxy: remove most references to settings globaldormando2022-09-151-1/+1
| | | | should make isolation/testing earlier.
* proxy: pull chunks into individual c filesdormando2022-02-181-0/+99
now's a good time to at least shove functional subsections of code into their own files. Some further work to clearly separate the API's will help but looks not too terrible. Big bonus is getting the backend handling code away from the frontend handling code, which should make it easier to follow.