Skip to content
Snippets Groups Projects
Commit 1a255568 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

tests: updated mock api for libknot master

parent a9af242c
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ int udp_recv_msg(int fd, uint8_t *buf, size_t len, struct timeval *timeout)
}
int tcp_send_msg(int fd, const uint8_t *msg, size_t len)
int tcp_send_msg(int fd, const uint8_t *msg, size_t len, struct timeval *timeout)
{
/* Unlock GIL and attempt to send message over. */
uint16_t msg_len = htons(len);
......@@ -75,7 +75,7 @@ int udp_send_msg(int fd, const uint8_t *msg, size_t msglen,
const struct sockaddr *addr)
{
/* Tunnel via TCP. */
return tcp_send_msg(fd, msg, msglen);
return tcp_send_msg(fd, msg, msglen, NULL);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment