This is a non working version of my ethernet with sd card, i do not know why

Dependencies:   SDFileSystem mbed

Fork of eth_v13 by Heiko Greiner

httpServer.h

Committer:
hggerdd
Date:
2014-03-27
Revision:
4:01cb86c138d8
Parent:
3:79dc3337d9da

File content as of revision 4:01cb86c138d8:

#ifndef HTTPSERVER_H_
#define HTTPSERVER_H_

#include "TCPSocket.h"
#include "html.h"

class httpServer
{
    TCPSocket tcpSocket;
    int _port;
    Timer timeout;
    
    int counter;

public:
    httpServer(int socket);
    void start(int port);
    void close();
    void poll();
    void httpApp();
};

#endif