diff options
Diffstat (limited to 'gr-blocks/lib/tcp_connection.h')
-rw-r--r-- | gr-blocks/lib/tcp_connection.h | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/gr-blocks/lib/tcp_connection.h b/gr-blocks/lib/tcp_connection.h deleted file mode 100644 index f97f8a605b..0000000000 --- a/gr-blocks/lib/tcp_connection.h +++ /dev/null @@ -1,54 +0,0 @@ -/* -*- c++ -*- */ -/* - * Copyright 2013 Free Software Foundation, Inc. - * - * This file is part of GNU Radio - * - * SPDX-License-Identifier: GPL-3.0-or-later - * - */ - -#ifndef INCLUDED_TCP_CONNECTION_H -#define INCLUDED_TCP_CONNECTION_H - -#include <pmt/pmt.h> -#include <boost/array.hpp> -#include <boost/asio.hpp> -#include <memory> - -namespace gr { - -class basic_block; - -namespace blocks { - -class tcp_connection -{ -private: - boost::asio::ip::tcp::socket d_socket; - std::vector<char> d_buf; - basic_block* d_block; - bool d_no_delay; - - tcp_connection(boost::asio::io_service& io_service, - int MTU = 10000, - bool no_delay = false); - - void handle_read(const boost::system::error_code& error, size_t bytes_transferred); - -public: - typedef std::shared_ptr<tcp_connection> sptr; - - static sptr - make(boost::asio::io_service& io_service, int MTU = 10000, bool no_delay = false); - - boost::asio::ip::tcp::socket& socket() { return d_socket; }; - - void start(gr::basic_block* block); - void send(pmt::pmt_t vector); -}; - -} /* namespace blocks */ -} /* namespace gr */ - -#endif /* INCLUDED_TCP_CONNECTION_H */ |