Skip to content

Commit

Permalink
Added missing "method" parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagoralves authored Jan 26, 2023
1 parent 02c8c95 commit 65f4bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webserver/core/lib/communication.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ typedef struct {
* DECLARATION OF COMMUNICATION LIB BLOCKS *
************************************************************************/
//client.cpp
int connect_to_tcp_server(uint8_t *ip_address, uint16_t port);
int connect_to_tcp_server(uint8_t *ip_address, uint16_t port, int method);
int send_tcp_message(uint8_t *msg, size_t msg_size, int socket_id);
int receive_tcp_message(uint8_t *msg_buffer, size_t buffer_size, int socket_id);
int close_tcp_connection(int socket_id);
Expand Down

0 comments on commit 65f4bbc

Please sign in to comment.