| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| * Copyright (C) 2013 Regents of the University of California. |
| * @author: Jeff Thompson <jefft0@remap.ucla.edu> |
| * See COPYING for copyright and distribution information. |
| #ifndef NDN_TCP_TRANSPORT_HPP |
| #define NDN_TCP_TRANSPORT_HPP |
| class TcpTransport : public Transport |
| TcpTransport(const std::string& host, const std::string& port = "6363"); |
| connect(boost::asio::io_service &ioService, |
| const ReceiveCallback &receiveCallback); |
| ptr_lib::shared_ptr<Impl> impl_; |
| #endif // NDN_TCP_TRANSPORT_HPP |