blob: f97f8a605ba85f8730fcd41cc5237bdb51579389 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/* -*- 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 */
|