Duy_new_test_Water_Monitor

Dependencies:   MQTT NDefLib

Fork of Cloud_IBM_MbedOS by ST

MQTTNetwork.h

Committer:
DuyLionTran
Date:
2017-12-05
Revision:
3:e1f6c5af437e
Parent:
0:e477c0f8b2e4

File content as of revision 3:e1f6c5af437e:

#ifndef _MQTTNETWORK_H_
#define _MQTTNETWORK_H_
 
#include "NetworkInterface.h"
 
class MQTTNetwork {
public:
    MQTTNetwork(NetworkInterface* aNetwork) : network(aNetwork) {
        socket = new TCPSocket();
    }
 
    ~MQTTNetwork() {
        delete socket;
    }
 
    int read(unsigned char* buffer, int len, int timeout) {
			  socket->set_timeout(timeout);
        return socket->recv(buffer, len);
    }
 
    int write(unsigned char* buffer, int len, int timeout) {
			  socket->set_timeout(timeout);			
        return socket->send(buffer, len);
    }
 
    int connect(const char* hostname, int port) {
        socket->open(network);
        return socket->connect(hostname, port);
    }
 
    int disconnect() {
        return socket->close();
    }
		 
private:
    NetworkInterface* network;
    TCPSocket* socket;
};
 
#endif // _MQTTNETWORK_H_