-
-
Notifications
You must be signed in to change notification settings - Fork 23
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
Add Ipv4Block and Ipv6Block. #298
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ximon18
approved these changes
Jul 9, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, just a few minor observations.
partim
added a commit
that referenced
this pull request
Jan 22, 2025
New * `ca::idexchange::Error` now impls `std::error::Error`. ([#297]) * Re-export `bcder` as `dep::bcder` if it is enabled. ([#299]) * Added `PublisherRequest::set_publisher_handle`. ([#300]) * Added `uri::{Rsync,Https}::path_into_dir` ([#302]) * Added `Ipv4Block` and `Ipv6Block` and `FromIterator` impls for `Ipv4Blocks` and `Ipv6Blocks`. ([#298]) * Made `AddressRange` public and added methods to convert ranges into a set of prefixes. ([#306]) * Updated the ASPA RTR PDU to conform with version -14 of draft-ietf-sidrops-8210bis. ([#309]) * Enable ASPA version 2 in the RTR server. ([#318]) * The ASPA `ProviderAsSet` now keeps track of its length and exposes it via the new `len` method. ([#315]) * The ASPA Provider AS Set is now limited to 16380 entries when parsing from ASPA objects and creating RTR PDUs. ([#316]) * Exposed `ca::idcert::TbsIdCert::validity`. ([#310]); * Protect against maliciously large XML input to the RRDP parser. This will allow re-enabling GZIP support in RRDP clients. ([#319]) Bug fixes * Do not allow backslashes in idexchange handles. ([#304]) * Check the content of file names in a manifest during parsing. This fixes a crash when later code assumes that the file names only contain ASCII characters and otherwise panics. ([#320]) Other changes * The minimum supported Rust version is now 1.73. ([#319])
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds new types
Ipv4Block
andIpv6Block
that wrap anIpBlock
and enforce it to be of the correct address family. In addition it addsFromIterator
impls toIpv4Blocks
andIpv6Blocks
.