From e88abc49b8c4d5a9570b55d4546298d1bf0e6e36 Mon Sep 17 00:00:00 2001 From: Martine Lenders <mail@martine-lenders.eu> Date: Thu, 27 Dec 2018 20:56:54 +0100 Subject: [PATCH] shell_commands/sc_gnrc_netif: get 6Lo flag --- sys/shell/commands/sc_gnrc_netif.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/shell/commands/sc_gnrc_netif.c b/sys/shell/commands/sc_gnrc_netif.c index 304b869e3f..a124f9ca36 100644 --- a/sys/shell/commands/sc_gnrc_netif.c +++ b/sys/shell/commands/sc_gnrc_netif.c @@ -523,6 +523,9 @@ static void _netif_list(kernel_pid_t iface) #endif line_thresh = _netif_list_flag(iface, NETOPT_IPV6_SND_RTR_ADV, "RTR_ADV ", line_thresh); +#ifdef MODULE_GNRC_SIXLOWPAN + line_thresh = _netif_list_flag(iface, NETOPT_6LO, "6LO ", line_thresh); +#endif #ifdef MODULE_GNRC_SIXLOWPAN_IPHC line_thresh += _LINE_THRESHOLD + 1; /* enforce linebreak after this option */ line_thresh = _netif_list_flag(iface, NETOPT_6LO_IPHC, "IPHC ", -- GitLab