diff options
author | Josh Blum <josh@joshknows.com> | 2010-07-08 19:51:59 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-07-08 19:51:59 -0700 |
commit | 8867df0d7e0948c2091aff1a5c4adbcdd083fe4a (patch) | |
tree | 43dde1f9fe8fa68a2b5dd0c2dae363d7c29f0da0 /host/lib/types.cpp | |
parent | da9d47011e02f2b18fccda00dbea0b9d9c0dc704 (diff) | |
download | uhd-8867df0d7e0948c2091aff1a5c4adbcdd083fe4a.tar.gz uhd-8867df0d7e0948c2091aff1a5c4adbcdd083fe4a.tar.bz2 uhd-8867df0d7e0948c2091aff1a5c4adbcdd083fe4a.zip |
uhd: added packet type to vrt if info struct, added burst flags to rx metadata, fixed vrt if packet parsing bugs
Diffstat (limited to 'host/lib/types.cpp')
-rw-r--r-- | host/lib/types.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/host/lib/types.cpp b/host/lib/types.cpp index 9cf2a2220..1e7917ad7 100644 --- a/host/lib/types.cpp +++ b/host/lib/types.cpp @@ -99,7 +99,9 @@ rx_metadata_t::rx_metadata_t(void): has_time_spec(false), time_spec(time_spec_t()), more_fragments(false), - fragment_offset(0) + fragment_offset(0), + start_of_burst(false), + end_of_burst(false) { /* NOP */ } |