net: apps: Fix style issue
Add spaces after a list of values as required by checkpatch script. Change-Id: I04bd8af8195e3966fd2b9c36ead49483030eae18 Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
parent
fc7bc7cffb
commit
1b4271baef
5 changed files with 22 additions and 24 deletions
|
@ -62,14 +62,12 @@ static uint8_t my_mac[] = { 0x0a, 0xbe, 0xef, 0x15, 0xf0, 0x0d };
|
||||||
|
|
||||||
#ifdef CONFIG_NETWORKING_WITH_IPV6
|
#ifdef CONFIG_NETWORKING_WITH_IPV6
|
||||||
/* The 2001:db8::/32 is the private address space for documentation RFC 3849 */
|
/* The 2001:db8::/32 is the private address space for documentation RFC 3849 */
|
||||||
#define MY_IPADDR { { { 0x20,0x01,0x0d,0xb8,0,0,0,0,0,0,0,0,0,0,0,0x2 } } }
|
|
||||||
|
|
||||||
#define PEER_IPADDR { { { 0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x1 } } }
|
#define PEER_IPADDR { { { 0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x1 } } }
|
||||||
|
#define MY_IPADDR { { { 0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x2 } } }
|
||||||
#else
|
#else
|
||||||
/* The 192.0.2.0/24 is the private address space for documentation RFC 5737 */
|
/* The 192.0.2.0/24 is the private address space for documentation RFC 5737 */
|
||||||
#define MY_IPADDR { { { 192, 0, 2, 2 } } }
|
#define MY_IPADDR { { { 192, 0, 2, 2 } } }
|
||||||
#define PEER_IPADDR { { { 192, 0, 2, 1 } } }
|
#define PEER_IPADDR { { { 192, 0, 2, 1 } } }
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define MY_PORT 8484
|
#define MY_PORT 8484
|
||||||
|
|
|
@ -92,7 +92,6 @@ static uint8_t my_mac[] = { 0x0a, 0xbe, 0xef, 0x15, 0xf0, 0x0d };
|
||||||
#ifdef CONFIG_NETWORKING_WITH_IPV6
|
#ifdef CONFIG_NETWORKING_WITH_IPV6
|
||||||
/* The 2001:db8::/32 is the private address space for documentation RFC 3849 */
|
/* The 2001:db8::/32 is the private address space for documentation RFC 3849 */
|
||||||
#define MY_IPADDR { { { 0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x2 } } }
|
#define MY_IPADDR { { { 0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x2 } } }
|
||||||
|
|
||||||
#define PEER_IPADDR { { { 0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x1 } } }
|
#define PEER_IPADDR { { { 0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x1 } } }
|
||||||
#else
|
#else
|
||||||
/* The 192.0.2.0/24 is the private address space for documentation RFC 5737 */
|
/* The 192.0.2.0/24 is the private address space for documentation RFC 5737 */
|
||||||
|
|
|
@ -72,6 +72,7 @@ static uint8_t my_mac[] = { 0x15, 0x0a, 0xbe, 0xef, 0xf0, 0x0d };
|
||||||
/* The 2001:db8::/32 is the private address space for documentation RFC 3849 */
|
/* The 2001:db8::/32 is the private address space for documentation RFC 3849 */
|
||||||
#define PEER_IPADDR { { { 0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x1 } } }
|
#define PEER_IPADDR { { { 0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x1 } } }
|
||||||
#define MY_IPADDR { { { 0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x2 } } }
|
#define MY_IPADDR { { { 0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x2 } } }
|
||||||
|
|
||||||
/* admin-local, dynamically allocated multicast address */
|
/* admin-local, dynamically allocated multicast address */
|
||||||
#define MCAST_IPADDR { { { 0xff, 0x84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x2 } } }
|
#define MCAST_IPADDR { { { 0xff, 0x84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x2 } } }
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue