Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 1 | /** |
2 | * @author: Jeff Thompson | ||||
3 | * See COPYING for copyright and distribution information. | ||||
4 | */ | ||||
5 | |||||
6 | #include <stdexcept> | ||||
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame^] | 7 | #include "transport.hpp" |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 8 | |
9 | using namespace std; | ||||
10 | |||||
11 | namespace ndn { | ||||
12 | |||||
Jeff Thompson | b9e3c8e | 2013-08-02 11:42:51 -0700 | [diff] [blame] | 13 | void Transport::connect(Face &face) |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 14 | { |
15 | throw logic_error("unimplemented"); | ||||
16 | } | ||||
17 | |||||
Jeff Thompson | 3cd04e8 | 2013-07-30 15:27:59 -0700 | [diff] [blame] | 18 | void Transport::send(const unsigned char *data, unsigned int dataLength) |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 19 | { |
20 | throw logic_error("unimplemented"); | ||||
21 | } | ||||
Jeff Thompson | 5796388 | 2013-08-05 16:01:25 -0700 | [diff] [blame] | 22 | |
23 | void Transport::close() | ||||
24 | { | ||||
25 | } | ||||
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 26 | |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 27 | } |