This commit is contained in:
hduffddybz 2014-08-24 21:16:02 -08:00
parent c1d0db700c
commit 6ccfe9f374
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ void udpecho_entry(void *parameter)
addr = netbuf_fromaddr(buf);
port = netbuf_fromport(buf);
/* send the data to buffer */
/* send the data to buffer */
netconn_connect(conn, addr, port);
/* reset address, and send to client */
@ -46,7 +46,7 @@ void udpecho_entry(void *parameter)
netconn_send(conn, buf);
/* release buffer */
/* release buffer */
netbuf_delete(buf);
}
}