summaryrefslogtreecommitdiffstats
path: root/src/core.h
diff options
context:
space:
mode:
authorOpenGnSys Support Team <soporte-og@soleta.eu>2023-11-14 11:11:02 +0100
committerOpenGnSys Support Team <soporte-og@soleta.eu>2023-11-14 11:25:42 +0100
commit944fef7b04f67ef18c445d4c825a39952f7d8e73 (patch)
tree1da7d37025b0be7d98e39c31d6a3102bec9b8f48 /src/core.h
parent485bf92216b7f3235f4e57dee5ac586beb60a090 (diff)
core: restrict rest API to 127.0.0.1
Until there is TLS support for this, frontend and ogserver needs to be in the same box by now.
Diffstat (limited to 'src/core.h')
-rw-r--r--src/core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.h b/src/core.h
index 49a646a..420ae31 100644
--- a/src/core.h
+++ b/src/core.h
@@ -5,7 +5,7 @@ extern int socket_rest, socket_agent_rest;
extern struct ev_loop *og_loop;
extern time_t start_time;
-int og_socket_server_init(const char *port);
+int og_socket_server_init(const char *addr, const char *port);
void og_server_accept_cb(struct ev_loop *loop, struct ev_io *io, int events);
#endif