From 79932abdb705223f807e83f91a1bcd12f9cbb4f0 Mon Sep 17 00:00:00 2001 From: Jukka Rissanen Date: Wed, 17 Feb 2016 14:50:13 +0200 Subject: [PATCH] net: apps: Fix the mac addresses in dtls client demo Change-Id: Iec0e0d716f7aa718134167ac43b014ef95d7e67b Signed-off-by: Jukka Rissanen --- samples/net/dtls_client/src/dtls-client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/net/dtls_client/src/dtls-client.c b/samples/net/dtls_client/src/dtls-client.c index 589b7d174be..3513e102bd1 100644 --- a/samples/net/dtls_client/src/dtls-client.c +++ b/samples/net/dtls_client/src/dtls-client.c @@ -84,12 +84,12 @@ static const unsigned char ecdsa_pub_key_y[] = { * address for it because lower parts of the stack cannot set it * in this test as we do not have any radios. */ -static uint8_t peer_mac[] = { 0x15, 0x0a, 0xbe, 0xef, 0xf0, 0x0d }; +static uint8_t peer_mac[] = { 0x0a, 0xbe, 0xef, 0x15, 0xf0, 0x0d }; #endif /* This is my mac address */ -static uint8_t my_mac[] = { 0x0a, 0xbe, 0xef, 0x15, 0xf0, 0x0d }; +static uint8_t my_mac[] = { 0x15, 0x0a, 0xbe, 0xef, 0xf0, 0x0d }; #ifdef CONFIG_NETWORKING_WITH_IPV6 #if 0