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 | |
| 13 | void Transport::connect(char *host, unsigned short port) |
| 14 | { |
| 15 | throw logic_error("unimplemented"); |
| 16 | } |
| 17 | |
| 18 | void Transport::send(unsigned char *data, unsigned int dataLength) |
| 19 | { |
| 20 | throw logic_error("unimplemented"); |
| 21 | } |
| 22 | |
| 23 | unsigned int Transport::receive(unsigned char *buffer, unsigned int bufferLength) |
| 24 | { |
| 25 | throw logic_error("unimplemented"); |
| 26 | } |
| 27 | |
| 28 | } |