Skip to content

Commit

Permalink
Fix missing "method" parameter on connect_to_tcp_server
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagoralves authored Jan 26, 2023
1 parent 851e37f commit 115bdf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webserver/core/lib/openplc_networking.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//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);

0 comments on commit 115bdf3

Please sign in to comment.