[refactor] add prefix to public functions of teleport-server

This commit is contained in:
Julian Sparber
2017-10-02 20:30:13 +02:00
parent b0d90da48a
commit 3eb040a84b
4 changed files with 18 additions and 9 deletions

View File

@@ -1,8 +1,9 @@
#ifndef __TELEPORT_SERVER_H
#define __TELEPORT_SERVER_H
extern int run_http_server(void);
extern int addRouteToServer(char *, char *, char *);
int teleport_server_run (void);
int teleport_server_add_route (gchar *,
gchar *,
gchar *);
#endif /* __TELEPORT_SERVER_H */