Skip to content
Snippets Groups Projects
Commit c0739fba authored by Martine Lenders's avatar Martine Lenders Committed by GitHub
Browse files

Merge pull request #5916 from miri64/sock/fix/tcp-queue-array

sock: make queue_array parameter a pointer
parents 6ee0a83b f93ab584
No related branches found
No related tags found
No related merge requests found
...@@ -116,7 +116,7 @@ int sock_tcp_connect(sock_tcp_t *sock, const sock_tcp_ep_t *remote, ...@@ -116,7 +116,7 @@ int sock_tcp_connect(sock_tcp_t *sock, const sock_tcp_ep_t *remote,
* @return -ENOMEM, if no memory was available to listen on @p queue. * @return -ENOMEM, if no memory was available to listen on @p queue.
*/ */
int sock_tcp_listen(sock_tcp_queue_t *queue, const sock_tcp_ep_t *local, int sock_tcp_listen(sock_tcp_queue_t *queue, const sock_tcp_ep_t *local,
sock_tcp_t[] queue_array, unsigned queue_len, sock_tcp_t *queue_array, unsigned queue_len,
uint16_t flags); uint16_t flags);
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment