Renamed functions in client

This commit is contained in:
2020-12-09 20:04:27 +01:00
parent feaadf31bf
commit 00382a71e2

View File

@ -9,17 +9,17 @@
#include "net/http.h" #include "net/http.h"
int websocket_handler() { int client_websocket_handler() {
// TODO implement websocket_handler // TODO implement client_websocket_handler
return 0; return 0;
} }
int request_handler() { int client_request_handler() {
// TODO implement request_handler // TODO implement client_request_handler
return 0; return 0;
} }
int connection_handler() { int client_connection_handler() {
// TODO implement connection_handler // TODO implement client_connection_handler
return 0; return 0;
} }