1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00
Olaf Bergmann 83e2932eb6 posix_sockets.c: fix send()/write() for connected UDP sockets
Calling send() or write() on a connected UDP socket raises a
kernel panic in posix_sockets.c, line 215, because _sockaddr_to_ep()
is called from socket_sendto() with address set to NULL.

This change modifies socket_sendto() to

* Check if the UDP socket is connected when the address argument
  is NULL.
* If connected, use the stored remote endpoint for sock_udp_send().
2019-04-10 11:19:13 +02:00
..
2018-04-05 14:39:59 +02:00
2018-02-22 19:13:39 +01:00
2018-05-28 15:43:41 -04:00
2018-06-11 19:12:02 +02:00
2018-10-18 13:37:21 +02:00
2018-06-15 00:34:33 +02:00
2018-06-11 19:12:02 +02:00
2018-04-05 14:39:59 +02:00
2019-02-13 13:31:52 +01:00
2019-04-01 17:05:44 +02:00
2018-08-24 18:14:03 +02:00
2018-08-31 10:35:02 +02:00
2018-10-03 10:44:14 +02:00
2019-03-25 14:10:04 +01:00