Browse Source

[finsh] update netstat

Signed-off-by: MurphyZhao <d2014zjt@163.com>
MurphyZhao 7 years ago
parent
commit
6856a8b5e6
1 changed files with 6 additions and 1 deletions
  1. 6 1
      components/finsh/msh_cmd.c

+ 6 - 1
components/finsh/msh_cmd.c

@@ -381,14 +381,19 @@ int cmd_dns(int argc, char **argv)
 FINSH_FUNCTION_EXPORT_ALIAS(cmd_dns, __cmd_dns, list the information of dns);
 FINSH_FUNCTION_EXPORT_ALIAS(cmd_dns, __cmd_dns, list the information of dns);
 #endif
 #endif
 
 
-#ifdef RT_LWIP_TCP
+#if defined (RT_LWIP_TCP) || defined (RT_LWIP_UDP)
 int cmd_netstat(int argc, char **argv)
 int cmd_netstat(int argc, char **argv)
 {
 {
     extern void list_tcps(void);
     extern void list_tcps(void);
     extern void list_udps(void);
     extern void list_udps(void);
 
 
+#ifdef RT_LWIP_TCP
     list_tcps();
     list_tcps();
+#endif
+#ifdef RT_LWIP_UDP
     list_udps();
     list_udps();
+#endif
+
     return 0;
     return 0;
 }
 }
 FINSH_FUNCTION_EXPORT_ALIAS(cmd_netstat, __cmd_netstat, list the information of TCP / IP);
 FINSH_FUNCTION_EXPORT_ALIAS(cmd_netstat, __cmd_netstat, list the information of TCP / IP);