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> |
| 7 | #include "Transport.hpp" |
| 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 | } |
| 22 | |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 23 | } |