samples: bluetooth/ipsp: Update multicast address

With current value of IPV6 Multicast address, IPV6 mcast bind
does not succeed and IPSP use case could not work.
Change use case multicast address to match IPV6 address and
enable binding

fixes: #6050

Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
This commit is contained in:
Erwan Gouriou 2018-02-08 11:55:53 +01:00 committed by Johan Hedberg
parent 8f5378b9de
commit 1caea8738c
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@
#include <net/udp.h>
/* admin-local, dynamically allocated multicast address */
#define MCAST_IP6ADDR { { { 0xff, 0x84, 0, 0, 0, 0, 0, 0, \
0, 0, 0, 0, 0, 0, 0, 0x2 } } }
#define MCAST_IP6ADDR { { { 0xff, 0x02, 0, 0, 0, 0, 0, 0, \
0, 0, 0, 0, 0, 0, 0, 0x1 } } }
struct in6_addr in6addr_mcast = MCAST_IP6ADDR;