USRP Hardware Driver and USRP Manual  Version: 3.11.0.HEAD-0-ga1b5c4ae
UHD and USRP Manual
udp_simple.hpp
Go to the documentation of this file.
1 //
2 // Copyright 2010,2014 Ettus Research LLC
3 // Copyright 2018 Ettus Research, a National Instruments Company
4 //
5 // SPDX-License-Identifier: GPL-3.0-or-later
6 //
7 
8 #ifndef INCLUDED_UHD_TRANSPORT_UDP_SIMPLE_HPP
9 #define INCLUDED_UHD_TRANSPORT_UDP_SIMPLE_HPP
10 
11 #include <uhd/config.hpp>
12 #include <uhd/types/serial.hpp>
13 #include <boost/asio/buffer.hpp>
14 #include <boost/utility.hpp>
15 #include <boost/shared_ptr.hpp>
16 
17 namespace uhd{ namespace transport{
18 
19 class UHD_API udp_simple : boost::noncopyable{
20 public:
21  typedef boost::shared_ptr<udp_simple> sptr;
22 
23  virtual ~udp_simple(void) = 0;
24 
26  static const size_t mtu = 1500 - 20 - 8; //default ipv4 mtu - ipv4 header - udp header
27 
41  static sptr make_connected(const std::string &addr, const std::string &port);
42 
55  static sptr make_broadcast(const std::string &addr, const std::string &port);
56 
62  static uart_iface::sptr make_uart(sptr udp);
63 
70  virtual size_t send(const boost::asio::const_buffer &buff) = 0;
71 
79  virtual size_t recv(const boost::asio::mutable_buffer &buff, double timeout = 0.1) = 0;
80 
85  virtual std::string get_recv_addr(void) = 0;
86 
90  virtual std::string get_send_addr(void) = 0;
91 };
92 
93 }} //namespace
94 
95 #endif /* INCLUDED_UHD_TRANSPORT_UDP_SIMPLE_HPP */
Definition: udp_simple.hpp:19
Definition: build_info.hpp:14
#define UHD_API
Definition: config.h:63
boost::shared_ptr< uart_iface > sptr
Definition: serial.hpp:186
boost::shared_ptr< udp_simple > sptr
Definition: udp_simple.hpp:21