Skip to content

Commit 1caea87

Browse files
erwangojhedberg
authored andcommitted
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 <[email protected]>
1 parent 8f5378b commit 1caea87

File tree

1 file changed

+2
-2
lines changed
  • samples/bluetooth/ipsp/src

1 file changed

+2
-2
lines changed

samples/bluetooth/ipsp/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
#include <net/udp.h>
2323

2424
/* admin-local, dynamically allocated multicast address */
25-
#define MCAST_IP6ADDR { { { 0xff, 0x84, 0, 0, 0, 0, 0, 0, \
26-
0, 0, 0, 0, 0, 0, 0, 0x2 } } }
25+
#define MCAST_IP6ADDR { { { 0xff, 0x02, 0, 0, 0, 0, 0, 0, \
26+
0, 0, 0, 0, 0, 0, 0, 0x1 } } }
2727

2828
struct in6_addr in6addr_mcast = MCAST_IP6ADDR;
2929

0 commit comments

Comments
 (0)