blob: 4a5557328616281763bb050189db5cb0d6b8bbee [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_TRANSPORT_HPP
7#define NDN_TRANSPORT_HPP
8
Jeff Thompsonb605b5d2013-07-30 15:12:56 -07009#include <vector>
10
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070011namespace ndn {
Jeff Thompson0cb7aee2013-07-16 16:18:06 -070012
13class NDN;
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070014class Transport {
15public:
Jeff Thompson2ed62fb2013-07-16 18:10:30 -070016 /**
17 *
18 * @param ndn Not a shared_ptr because we assume that it will remain valid during the life of this Transport object.
19 */
Jeff Thompson0cb7aee2013-07-16 16:18:06 -070020 virtual void connect(NDN &ndn);
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070021
Jeff Thompsonb605b5d2013-07-30 15:12:56 -070022 virtual void send(const unsigned char *data, unsigned int dataLength);
23
24 void send(const std::vector<unsigned char> &data)
25 {
26 send(&data[0], data.size());
27 }
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070028};
29
30}
31
32#endif