Sam Collinson

Results 8 comments of Sam Collinson

> What testing have you done for this? Are you able to show me some code that demonstrates how all of this is used? For testing I have been using...

Oh yes I can see why that's a little awkward. I should add the address to the `DyldRelocation`. My goal is to use the mapping (address, protection, data) and relocations...

> I still don't see the reason for `DyldCache::relocations` though. Why can't the user call `DyldCache::mappings` and then call `DyldCacheMapping::relocations` for each mapping? They can do both, and `DyldCache::relocations` is...

Sorry, rust is quite new for me and I'm not sure what is wrong with that, or what the best approach is. The requirement to box the iterators came because...

Removing the reference from `self` for `DyldCacheMapping::relocations` seems to make your example with flatten work. So I presume the idea from there is to remove `DyldCache::relocations`? `DyldCache::mappings` would still return...

Have pushed a change so that the following now works: ```rust cache .mappings() .map(DyldCacheMapping::relocations) .flatten() ``` But I am not sure how to reimplement `relocations` for the same reason as...

Was about to implement this feature when I found the PR. Any timeline on it being merged?

I have submitted this PR because I ran into this error when trying to use `httpx` for mTLS. Using wireshark I saw it presented empty certificates instead of the certificates...