Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix multiple blocking binary reader issues #552

Merged
merged 5 commits into from
May 25, 2023

Commits on May 16, 2023

  1. Fix multiple blocking binary reader issues

    - Fixes an issue where `read_from` would read fewer bytes than it was expected to.
    - Addded incomplete guard to an annotation consume that could cause an error
      when the buffer did not have enough data.
    - Fixed an issue where bytes read into a NBR were counted twice when determining
      if all data had been read. This probably wasn't an issue since `read_from`
      reads all of the data requested.
    - Implements stream completion for non-blocking binary reader.
    - Moves Expandable to the raw_reader module now that the binary raw reader is using it.
    nirosys committed May 16, 2023
    Configuration menu
    Copy the full SHA
    cc68cb5 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2023

  1. Configuration menu
    Copy the full SHA
    c9a94e3 View commit details
    Browse the repository at this point in the history
  2. Address clippy checks

    nirosys committed May 25, 2023
    Configuration menu
    Copy the full SHA
    53b83d1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    733a404 View commit details
    Browse the repository at this point in the history
  4. Fixing typo

    zslayton committed May 25, 2023
    Configuration menu
    Copy the full SHA
    f45cc8b View commit details
    Browse the repository at this point in the history