blob: 84a4e02887d1949c5072bc66a221c495cce4075d [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#include <stdexcept>
7#include "Transport.hpp"
8
9using namespace std;
10
11namespace ndn {
12
Jeff Thompsonbeb8b7d2013-07-16 15:49:21 -070013void Transport::connect(const char *host, unsigned short port)
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070014{
15 throw logic_error("unimplemented");
16}
17
18void Transport::send(unsigned char *data, unsigned int dataLength)
19{
20 throw logic_error("unimplemented");
21}
22
23unsigned int Transport::receive(unsigned char *buffer, unsigned int bufferLength)
24{
25 throw logic_error("unimplemented");
26}
27
28}