Thinger.io / ThingerWIZnetClient

Dependencies:   ThingerClient WIZnetInterface

Fork of ThingerWIZnetClient by Alvaro Luis Bustamante

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers TCPSocket.h Source File

TCPSocket.h

00001 #include "TCPSocketConnection.h"
00002 
00003 class TCPSocket : public TCPSocketConnection
00004 {
00005 public:
00006     TCPSocket() {
00007     }
00008 
00009     virtual ~TCPSocket() {
00010     }
00011 
00012     int available() {
00013         return eth->wait_readable(_sock_fd, 0);
00014     }
00015 };