blob: 8b714e8d3dc281f4c4aa0813743ca30eb87b0b1c [file] [log] [blame]
Jeff Thompsonfcf347d2013-07-15 11:30:44 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
4 */
5
6#ifndef NDN_TCPTRANSPORT_HPP
7#define NDN_TCPTRANSPORT_HPP
8
9#include "../c/transport/TcpTransport.h"
Jeff Thompsonb002f902013-07-16 18:07:18 -070010#include "../c/encoding/BinaryXMLElementReader.h"
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070011#include "Transport.hpp"
12
13namespace ndn {
14
15class TcpTransport : public Transport {
16public:
17 TcpTransport()
18 {
19 ndn_TcpTransport_init(&transport_);
Jeff Thompson0cb7aee2013-07-16 16:18:06 -070020 ndn_ = 0;
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070021 }
22
Jeff Thompson2ed62fb2013-07-16 18:10:30 -070023 /**
24 *
25 * @param ndn Not a shared_ptr because we assume that it will remain valid during the life of this Transport object.
26 */
Jeff Thompson0cb7aee2013-07-16 16:18:06 -070027 virtual void connect(NDN &ndn);
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070028
29 virtual void send(unsigned char *data, unsigned int dataLength);
30
Jeff Thompson0cb7aee2013-07-16 16:18:06 -070031 virtual void tempReceive();
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070032
33private:
34 struct ndn_TcpTransport transport_;
Jeff Thompson0cb7aee2013-07-16 16:18:06 -070035 NDN *ndn_;
Jeff Thompsonb002f902013-07-16 18:07:18 -070036 // TODO: This belongs in the socket listener.
37 ndn_BinaryXMLElementReader elementReader_;
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070038};
39
40}
41
42#endif