blob: b36b1195041b5e264071b6a297db1fbc6a6a6514 [file] [log] [blame]
Jeff Thompsonfcf347d2013-07-15 11:30:44 -07001/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07002 * Copyright (C) 2013 Regents of the University of California.
3 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompsonfcf347d2013-07-15 11:30:44 -07004 * See COPYING for copyright and distribution information.
5 */
6
7#include <stdexcept>
Jeff Thompson53412192013-08-06 13:35:50 -07008#include "transport.hpp"
Jeff Thompsonfcf347d2013-07-15 11:30:44 -07009
10using namespace std;
11
12namespace ndn {
13
Jeff Thompson10e34382013-08-22 13:34:46 -070014Transport::ConnectionInfo::~ConnectionInfo()
15{
16}
17
Jeff Thompson0050abe2013-09-17 12:50:25 -070018void
19Transport::connect(const Transport::ConnectionInfo& connectionInfo, ElementListener& elementListener)
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070020{
21 throw logic_error("unimplemented");
22}
23
Jeff Thompson0050abe2013-09-17 12:50:25 -070024void
Jeff Thompson97223af2013-09-24 17:01:27 -070025Transport::send(const uint8_t *data, size_t dataLength)
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070026{
27 throw logic_error("unimplemented");
28}
Jeff Thompson432c8be2013-08-09 16:16:08 -070029
Jeff Thompson0050abe2013-09-17 12:50:25 -070030void
31Transport::processEvents()
Jeff Thompson432c8be2013-08-09 16:16:08 -070032{
33 throw logic_error("unimplemented");
34}
35
Jeff Thompson0050abe2013-09-17 12:50:25 -070036bool
37Transport::getIsConnected()
Jeff Thompsona4056972013-08-22 11:52:21 -070038{
39 throw logic_error("unimplemented");
40}
41
Jeff Thompson0050abe2013-09-17 12:50:25 -070042void
43Transport::close()
Jeff Thompson57963882013-08-05 16:01:25 -070044{
45}
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070046
Jeff Thompson43d6c0a2013-08-12 12:35:48 -070047Transport::~Transport()
48{
49}
50
Jeff Thompsonfcf347d2013-07-15 11:30:44 -070051}