diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-10-12 11:47:31 +0200 |
---|---|---|
committer | michael-west <michael.west@ettus.com> | 2020-12-04 12:06:14 -0800 |
commit | 124ed644eed29ca5e245a2588eeaa8130f869223 (patch) | |
tree | 8932fd9e74754d958e97434e1d60848400b181a4 /host/lib/usrp/mpmd/mpmd_impl.hpp | |
parent | 225fa105b6bffa5e60f9eb4f5d3c04cf62f9c91a (diff) | |
download | uhd-124ed644eed29ca5e245a2588eeaa8130f869223.tar.gz uhd-124ed644eed29ca5e245a2588eeaa8130f869223.tar.bz2 uhd-124ed644eed29ca5e245a2588eeaa8130f869223.zip |
mpmd: Export RPC token and mb_args to the property tree
There are applications (typically for debugging purposes) which need
access to the token and the mb_args. They are thus published via the
property tree.
Diffstat (limited to 'host/lib/usrp/mpmd/mpmd_impl.hpp')
-rw-r--r-- | host/lib/usrp/mpmd/mpmd_impl.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/host/lib/usrp/mpmd/mpmd_impl.hpp b/host/lib/usrp/mpmd/mpmd_impl.hpp index 364978fd7..5b19bcc00 100644 --- a/host/lib/usrp/mpmd/mpmd_impl.hpp +++ b/host/lib/usrp/mpmd/mpmd_impl.hpp @@ -131,6 +131,12 @@ public: _allow_claim_failure_flag = allow; } + //! Read the device access token + std::string get_token() + { + return _token; + } + private: /*! Reference to the RPC client that handles claiming */ @@ -165,6 +171,10 @@ private: */ uhd::task::sptr _claimer_task; + /*! A copy of the device access token + */ + std::string _token; + /*! This flag is only used within the claim() function. Go look there if you * really need to know what it does. */ |