First version

Dependencies:   mbed EthernetInterface mbed-rto

Committer:
KlaasGovaerts
Date:
Wed Apr 18 08:35:32 2018 +0000
Revision:
14:5f1fda6b9140
Parent:
13:a6c651a1e51c
Child:
15:ffd311730575
Versie 18/04 (3)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
KlaasGovaerts 4:0413d42377d1 1 #include "mbed.h"
KlaasGovaerts 4:0413d42377d1 2 #include "EthernetInterface.h"
KlaasGovaerts 12:f3db7045e220 3 #include "TCPSocketServer.h"
KlaasGovaerts 12:f3db7045e220 4 #include "TCPSocketConnection.h"
KlaasGovaerts 4:0413d42377d1 5
KlaasGovaerts 4:0413d42377d1 6 #ifndef TCPLISTENER_H
KlaasGovaerts 4:0413d42377d1 7 #define TCPLISTENER_H
KlaasGovaerts 4:0413d42377d1 8 class TCPlistener{
KlaasGovaerts 4:0413d42377d1 9 private:
KlaasGovaerts 4:0413d42377d1 10 EthernetInterface eth;
KlaasGovaerts 12:f3db7045e220 11 TCPSocketServer server;
KlaasGovaerts 12:f3db7045e220 12 TCPSocketConnection *connections[10];
KlaasGovaerts 14:5f1fda6b9140 13 int arraySize;
KlaasGovaerts 14:5f1fda6b9140 14 TCPSocketConnection * newConnection();
KlaasGovaerts 4:0413d42377d1 15 public:
KlaasGovaerts 4:0413d42377d1 16 void receivePacket(char *contents,int size);
KlaasGovaerts 12:f3db7045e220 17 void listen();
KlaasGovaerts 4:0413d42377d1 18 TCPlistener();
KlaasGovaerts 4:0413d42377d1 19 };
KlaasGovaerts 4:0413d42377d1 20 #endif