blob: 2f424c98c2fd21dd0ec823feffd1dc670e3e9f5e [file] [log] [blame]
Vadim Yanitskiy89fc14b2017-06-16 21:00:29 +07001/* -*- c++ -*- */
2/*
3 * Copyright 2013 Free Software Foundation, Inc.
4 *
5 * This file is part of GNU Radio
6 *
7 * GNU Radio is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3, or (at your option)
10 * any later version.
11 *
12 * GNU Radio is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Radio; see the file COPYING. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street,
20 * Boston, MA 02110-1301, USA.
21 */
22
23#ifndef INCLUDED_GRGSM_TRX_UDP_SOCKET_H
24#define INCLUDED_GRGSM_TRX_UDP_SOCKET_H
25
26#include <gnuradio/thread/thread.h>
27
28#include <boost/array.hpp>
29#include <boost/asio.hpp>
30#include <pmt/pmt.h>
31
32namespace gr {
33 namespace grgsm {
34
35 class udp_socket
36 {
37 private:
38 boost::asio::io_service d_io_service;
39 std::vector<char> d_rxbuf;
40 gr::thread::thread d_thread;
41 bool d_started;
42 bool d_finished;
43
44 boost::asio::ip::udp::endpoint d_udp_endpoint_rx;
45 boost::asio::ip::udp::endpoint d_udp_endpoint_tx;
46 boost::shared_ptr<boost::asio::ip::udp::socket> d_udp_socket;
47
48 void handle_udp_read(const boost::system::error_code& error,
49 size_t bytes_transferred);
50 void run_io_service(void);
51
52 public:
53 udp_socket(
54 const std::string &remote_addr,
55 const std::string &src_port,
56 const std::string &dst_port);
57 ~udp_socket();
58
59 void udp_send(uint8_t *data, size_t len);
60 };
61
62 } /* namespace blocks */
63} /* namespace gr */
64
65#endif /* INCLUDED_GRGSM_TRX_UDP_SOCKET_H */