diff options
author | Josh Blum <josh@joshknows.com> | 2010-04-21 17:49:00 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-04-21 17:49:00 -0700 |
commit | e5248746f66829c0bd899bcde5c15970fdda785d (patch) | |
tree | b2b0bab970610737ff4710e508dd5a9c04c92869 /host/lib/usrp/usrp2/usrp2_impl.cpp | |
parent | 72f4ce79c88d03b33d585a2ea48076e2010a21a8 (diff) | |
download | uhd-e5248746f66829c0bd899bcde5c15970fdda785d.tar.gz uhd-e5248746f66829c0bd899bcde5c15970fdda785d.tar.bz2 uhd-e5248746f66829c0bd899bcde5c15970fdda785d.zip |
Added protocol version number to usrp2 common header and data struct.
Diffstat (limited to 'host/lib/usrp/usrp2/usrp2_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp2/usrp2_impl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/host/lib/usrp/usrp2/usrp2_impl.cpp b/host/lib/usrp/usrp2/usrp2_impl.cpp index 3bdc5bd02..0fa56c339 100644 --- a/host/lib/usrp/usrp2/usrp2_impl.cpp +++ b/host/lib/usrp/usrp2/usrp2_impl.cpp @@ -70,6 +70,7 @@ uhd::device_addrs_t usrp2::find(const device_addr_t &hint){ //send a hello control packet usrp2_ctrl_data_t ctrl_data_out; + ctrl_data_out.proto_ver = htonl(USRP2_PROTO_VERSION); ctrl_data_out.id = htonl(USRP2_CTRL_ID_GIVE_ME_YOUR_IP_ADDR_BRO); udp_transport->send(boost::asio::buffer(&ctrl_data_out, sizeof(ctrl_data_out))); |