Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of NetServicesMin by
Revision 4:c8b2f969c8dd, committed 2012-11-24
- Comitter:
- uci1
- Date:
- Sat Nov 24 20:20:45 2012 +0000
- Parent:
- 3:c3f738396920
- Commit message:
- Remove debugging printouts
Changed in this revision
if/lwip/lwipNetTcpSocket.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/if/lwip/lwipNetTcpSocket.cpp Sat Nov 24 06:22:40 2012 +0000 +++ b/if/lwip/lwipNetTcpSocket.cpp Sat Nov 24 20:20:45 2012 +0000 @@ -292,7 +292,6 @@ err_t LwipNetTcpSocket::acceptCb(struct tcp_pcb *newpcb, err_t err) { -printf("acceptCb\r\n"); if(err) { DBG("Error %d in LwipNetTcpSocket::acceptCb.\n", err); @@ -305,7 +304,6 @@ if(pNewNetTcpSocket == NULL) { DBG("Not enough mem, socket dropped in LwipNetTcpSocket::acceptCb.\n"); -printf("not enough mem\r\n"); tcp_abort(newpcb); return ERR_ABRT; } @@ -327,7 +325,6 @@ void LwipNetTcpSocket::errCb(err_t err) { -printf("errCb: err=%d\r\n",err); DBG("NetTcpSocket %p - Error %d in LwipNetTcpSocket::errCb.\n", (void*)this, err); //WARN: At this point, m_pPcb has been freed by lwIP