blob: 950b1cbae8d8a7f42c0b8e7704bf233e20202f81 [file] [log] [blame]
/**
* @author: Jeff Thompson
* See COPYING for copyright and distribution information.
*/
#include <stdexcept>
#include "Transport.hpp"
using namespace std;
namespace ndn {
void Transport::connect(char *host, unsigned short port)
{
throw logic_error("unimplemented");
}
void Transport::send(unsigned char *data, unsigned int dataLength)
{
throw logic_error("unimplemented");
}
unsigned int Transport::receive(unsigned char *buffer, unsigned int bufferLength)
{
throw logic_error("unimplemented");
}
}