A version of LWIP, provided for backwards compatibility.

Dependents:   AA_DemoBoard DemoBoard HelloServerDemo DemoBoard_RangeIndicator ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers tcpitem.cpp Source File

tcpitem.cpp

00001 #include "tcpitem.h"
00002 
00003 using namespace std;
00004 using namespace mbed;
00005 
00006 void TCPItem::abort() {
00007   tcp_abort(this->_pcb);
00008 }
00009 
00010 err_t TCPItem::close() {
00011   return tcp_close(this->_pcb);
00012 }