From 6856a8b5e6459e6153396c6be3375411a024910e Mon Sep 17 00:00:00 2001 From: MurphyZhao Date: Fri, 29 Jun 2018 14:51:59 +0800 Subject: [PATCH] [finsh] update netstat Signed-off-by: MurphyZhao --- components/finsh/msh_cmd.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/components/finsh/msh_cmd.c b/components/finsh/msh_cmd.c index 71dca15976..47ca031065 100644 --- a/components/finsh/msh_cmd.c +++ b/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); #endif -#ifdef RT_LWIP_TCP +#if defined (RT_LWIP_TCP) || defined (RT_LWIP_UDP) int cmd_netstat(int argc, char **argv) { extern void list_tcps(void); extern void list_udps(void); +#ifdef RT_LWIP_TCP list_tcps(); +#endif +#ifdef RT_LWIP_UDP list_udps(); +#endif + return 0; } FINSH_FUNCTION_EXPORT_ALIAS(cmd_netstat, __cmd_netstat, list the information of TCP / IP);