If only PF_IEEE802154 socket family is enabled, then must use SOCK_DGRAM.

This commit is contained in:
Gregory Nutt 2017-08-21 07:14:33 -06:00
parent 7c26ee7611
commit e1b0821eb1

View File

@ -65,10 +65,14 @@
* if UDP is disabled.
*/
#ifdef CONFIG_NET_UDP
#if defined(CONFIG_NET_UDP)
# define NETLIB_SOCK_IOCTL SOCK_DGRAM
#else
#elif defined(CONFIG_NET_TCP)
# define NETLIB_SOCK_IOCTL SOCK_STREAM
#elif defined(CONFIG_NET_IEEE802154)
# define NETLIB_SOCK_IOCTL SOCK_DGRAM
#elif defined(CONFIG_NET_PKT)
# define NETLIB_SOCK_IOCTL SOCK_RAW
#endif
/****************************************************************************