Port of LwIP performed by Ralf in 2010. Not recommended for use with recent mbed libraries, but good demos of raw LwIP possible

Dependents:   LwIP_raw_API_serverExample tiny-dtls

Core/TCPListener.h

Committer:
RodColeman
Date:
2012-09-18
Revision:
0:0791c1fece8e

File content as of revision 0:0791c1fece8e:

#ifndef TCPLISTENER_H
#define TCPLISTENER_H

#include "TCPItem.h"

#include "arch/cc.h"
#include "lwip/err.h"
#include "lwip/tcp.h"

namespace mbed {
  class NetServer;
  class TCPConnection;

  class TCPListener : public TCPItem {
    public:
      TCPListener(u16_t port) : _port(port) { 
      }

      virtual ~TCPListener() {}

      void bind();
    protected:
      /**
       * Function to call when a listener has been connected.
       * @param err an error argument (TODO: that is current always ERR_OK?)
       * @return ERR_OK: accept the new connection,
       *                 any other err_t abortsthe new connection
       */
      virtual err_t accept(struct tcp_pcb *, err_t err) = 0;
      
      u16_t _port;
    private:
      static err_t accept_callback(void *arg, struct tcp_pcb *newpcb, err_t err);
    friend NetServer;
    friend TCPConnection;
    
  };

};

#endif /* TCPLISTENER_H */