https://github.com/axtens/epoxy
A REST-based proxy management tool, written in B4J.
https://github.com/axtens/epoxy
Last synced: 4 months ago
JSON representation
A REST-based proxy management tool, written in B4J.
- Host: GitHub
- URL: https://github.com/axtens/epoxy
- Owner: axtens
- License: mit
- Created: 2019-09-30T14:44:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-02T14:21:46.000Z (over 6 years ago)
- Last Synced: 2025-01-31T06:42:03.094Z (over 1 year ago)
- Language: Visual Basic
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# epoxy
A REST-based proxy management tool, written in B4J.
```
gSrvr.AddHandler("/epoxy", "MainHandler", False) 'GET/PUT/POST/DELETE
gSrvr.AddHandler("/epoxy/remove", "RemoveHandler", False) 'DELETE
gSrvr.AddHandler("/epoxy/export", "ExportHandler", False) 'PUT
gSrvr.AddHandler("/epoxy/import", "ImportHandler",False) 'GET
gSrvr.AddHandler("/epoxy/count","CountHandler",False) 'GET
gSrvr.AddHandler("/epoxy/list","ListHandler",False) 'GET
gSrvr.AddHandler("/epoxy/list/all","ListHandler",False) 'GET
gSrvr.AddHandler("/epoxy/shutdown","ShutdownHandler", False) 'PUT
gSrvr.AddHandler("/epoxy/version","VersionHandler",False) 'GET
gSrvr.AddHandler("/epoxy/error","ErrorHandler",False)
```
Implements a REST server for logging proxy use details (back when we were using publicly listed proxies.) Database is in-memory and must be exported or data will be lost.