commit | b605b5d1028ba301f5fe6d2ee9e0c9a6fff32d42 | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jefft0@gmail.com> | Tue Jul 30 15:12:56 2013 -0700 |
committer | Jeff Thompson <jefft0@gmail.com> | Tue Jul 30 15:12:56 2013 -0700 |
tree | ff4bd3d75549cb23731040f170ebb873f70437d3 | |
parent | a234d5de9b0d22c4cdabdef2022b0688432df7cd [diff] [blame] |
Change send to use const unsigned char *
diff --git a/ndn-cpp/transport/TcpTransport.hpp b/ndn-cpp/transport/TcpTransport.hpp index 8b714e8..fc57e54 100644 --- a/ndn-cpp/transport/TcpTransport.hpp +++ b/ndn-cpp/transport/TcpTransport.hpp
@@ -26,7 +26,7 @@ */ virtual void connect(NDN &ndn); - virtual void send(unsigned char *data, unsigned int dataLength); + virtual void send(const unsigned char *data, unsigned int dataLength); virtual void tempReceive();