diff options
author | Ashish Chaudhari <ashish@ettus.com> | 2017-06-15 15:40:09 -0700 |
---|---|---|
committer | Ashish Chaudhari <ashish@ettus.com> | 2017-06-15 15:40:09 -0700 |
commit | ea2a5c6e6756ec228d87c787e80c4921b1ca763e (patch) | |
tree | be8dd95986d74658485f4767af331aebd36734af /host/lib/transport | |
parent | 6270f79a56635fca8484f120e8c4bb8874fdc903 (diff) | |
download | uhd-ea2a5c6e6756ec228d87c787e80c4921b1ca763e.tar.gz uhd-ea2a5c6e6756ec228d87c787e80c4921b1ca763e.tar.bz2 uhd-ea2a5c6e6756ec228d87c787e80c4921b1ca763e.zip |
x300: Added location info to FW ctrl error messages
Diffstat (limited to 'host/lib/transport')
-rw-r--r-- | host/lib/transport/udp_simple.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/host/lib/transport/udp_simple.cpp b/host/lib/transport/udp_simple.cpp index 9fe285376..75862d1a9 100644 --- a/host/lib/transport/udp_simple.cpp +++ b/host/lib/transport/udp_simple.cpp @@ -64,6 +64,10 @@ public: return _recv_endpoint.address().to_string(); } + std::string get_send_addr(void){ + return _send_endpoint.address().to_string(); + } + private: bool _connected; asio::io_service _io_service; |