Versão atual 13-12-2013.

Dependencies:   EthernetInterface mbed-rtos mbed

Revision:
0:65c41a68b49a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Codes/TelnetCommands/telnet_help.cpp	Fri Dec 13 11:42:59 2013 +0000
@@ -0,0 +1,25 @@
+
+#include "TelnetServer.h"
+
+
+char *header_msg_help = "This is a list of available commands:\r\n\r\n";
+
+int TelnetServer::HelpCommand(TCPSocketConnection *conn, char ** argv,int argc)
+{
+    printf("Entering help command...\n");
+    
+    conn->send(header_msg_help,strlen(header_msg_help));
+    
+    int i;
+    for(i=0;(unsigned int)cmds[i].pfn != 0;i++)
+    {
+        
+        Thread::wait(20);
+        conn->send(cmds[i].command_name,strlen(cmds[i].command_name));
+        
+        //printf("cmd=%s\n",cmds[i].command_name);        
+        conn->send("\r\n",2);
+    }
+
+    return 0;
+}
\ No newline at end of file