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.
The tunnel reader trait as used on macOS (#18) forces a copy of the received traffic since macOS's
utun
requires extra header to be passed into the tunnel interface when receiving tunnel traffic. Since theWriter::write
method takes a single parameter that is the slice of bytes that should be written to theutun
device, and the slice doesn't contain the headersutun
expects, the slice has to be copied and a buffer needs to be allocated. Since the header on macOS are always 4 bytes long, it will always be smaller than the wireguard header that's preceding the payload in the buffer that's originally backing the slice.This seems like a bit of a hack, and I'm open to better suggestions to reducing the amount of copying required.