aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/include/uhdlib/transport/dpdk_simple.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/include/uhdlib/transport/dpdk_simple.hpp')
-rw-r--r--host/lib/include/uhdlib/transport/dpdk_simple.hpp33
1 files changed, 4 insertions, 29 deletions
diff --git a/host/lib/include/uhdlib/transport/dpdk_simple.hpp b/host/lib/include/uhdlib/transport/dpdk_simple.hpp
index 86abaeff8..8420510ea 100644
--- a/host/lib/include/uhdlib/transport/dpdk_simple.hpp
+++ b/host/lib/include/uhdlib/transport/dpdk_simple.hpp
@@ -8,7 +8,6 @@
#define INCLUDED_DPDK_SIMPLE_HPP
#include <uhd/transport/udp_simple.hpp>
-#include <uhdlib/transport/dpdk_common.hpp>
namespace uhd { namespace transport {
@@ -17,35 +16,11 @@ class dpdk_simple : public udp_simple
public:
virtual ~dpdk_simple(void) = 0;
- /*!
- * Make a new connected dpdk transport:
- * This transport is for sending and receiving
- * between this host and a single endpoint.
- * The primary usage for this transport will be control transactions.
- *
- * The address must be an ipv4 address.
- * The port must be a number.
- *
- * \param addr a string representing the destination address
- * \param port a string representing the destination port
- */
- static udp_simple::sptr make_connected(struct uhd_dpdk_ctx &ctx,
- const std::string &addr, const std::string &port);
+ static udp_simple::sptr make_connected(
+ const std::string& addr, const std::string& port);
- /*!
- * Make a new broadcasting dpdk transport:
- * This transport can send broadcast datagrams
- * and receive datagrams from multiple sources.
- * The primary usage for this transport will be to discover devices.
- *
- * The address must be an ipv4 address.
- * The port must be a number.
- *
- * \param addr a string representing the destination address
- * \param port a string representing the destination port
- */
- static udp_simple::sptr make_broadcast(struct uhd_dpdk_ctx &ctx,
- const std::string &addr, const std::string &port);
+ static udp_simple::sptr make_broadcast(
+ const std::string& addr, const std::string& port);
/*!
* Send a single buffer.