Thinger.io Client Library for the WIZnet platform

Dependencies:   ThingerClient WIZnetInterface

Fork of ThingerWIZnetClient by Alvaro Luis Bustamante

TCPSocket.h

Committer:
alvarolb
Date:
2015-12-26
Revision:
4:98914de56323
Parent:
1:db9212d9415d

File content as of revision 4:98914de56323:

#include "TCPSocketConnection.h"

class TCPSocket : public TCPSocketConnection
{
public:
    TCPSocket() {
    }

    virtual ~TCPSocket() {
    }

    int available() {
        return eth->wait_readable(_sock_fd, 0);
    }
};