blob: 15b2c666facf4377d694c8189439669f85efe1b6 [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
Vadim Yanitskiyac3a5272017-07-19 03:05:07 +070028#include <boost/function.hpp>
Vadim Yanitskiy89fc14b2017-06-16 21:00:29 +070029#include <boost/array.hpp>
30#include <boost/asio.hpp>
Vadim Yanitskiyac3a5272017-07-19 03:05:07 +070031#include <boost/bind.hpp>
Vadim Yanitskiy89fc14b2017-06-16 21:00:29 +070032#include <pmt/pmt.h>
33
34namespace gr {
Piotr Krysik264fbf62017-11-05 12:25:51 +010035 namespace gsm {
Vadim Yanitskiy89fc14b2017-06-16 21:00:29 +070036
37 class udp_socket
38 {
39 private:
40 boost::asio::io_service d_io_service;
41 std::vector<char> d_rxbuf;
42 gr::thread::thread d_thread;
43 bool d_started;
44 bool d_finished;
45
46 boost::asio::ip::udp::endpoint d_udp_endpoint_rx;
47 boost::asio::ip::udp::endpoint d_udp_endpoint_tx;
48 boost::shared_ptr<boost::asio::ip::udp::socket> d_udp_socket;
49
50 void handle_udp_read(const boost::system::error_code& error,
51 size_t bytes_transferred);
52 void run_io_service(void);
53
54 public:
55 udp_socket(
56 const std::string &remote_addr,
57 const std::string &src_port,
Vadim Yanitskiyac3a5272017-07-19 03:05:07 +070058 const std::string &dst_port,
59 size_t mtu);
Vadim Yanitskiy89fc14b2017-06-16 21:00:29 +070060 ~udp_socket();
61
62 void udp_send(uint8_t *data, size_t len);
Vadim Yanitskiyac3a5272017-07-19 03:05:07 +070063 boost::function<void (uint8_t *, size_t)> udp_rx_handler;
Vadim Yanitskiy89fc14b2017-06-16 21:00:29 +070064 };
65
Piotr Krysik264fbf62017-11-05 12:25:51 +010066 } /* namespace gsm */
Vadim Yanitskiy89fc14b2017-06-16 21:00:29 +070067} /* namespace gr */
68
69#endif /* INCLUDED_GRGSM_TRX_UDP_SOCKET_H */