feat: Initial code

This commit is contained in:
2025-04-23 17:22:51 +10:00
commit aa3da9d5c3
9 changed files with 640 additions and 0 deletions

12
src/proxy.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef PROXY_H
#define PROXY_H
/**
* Starts the proxy server on the specified port
*
* @param port The port to listen on
* @return 0 on success, non-zero on failure
*/
int start_proxy_server(int port);
#endif // PROXY_H