Add support for systemd-managed Unix SEQPACKET sockets#14
Merged
molguin92 merged 1 commit intocloudflare:mainfrom Apr 9, 2026
Merged
Conversation
molguin92
reviewed
Apr 9, 2026
Contributor
molguin92
left a comment
There was a problem hiding this comment.
LGTM. Just left a single nit pertaining to documentation on the new function.
753bec8 to
59b89e1
Compare
molguin92
approved these changes
Apr 9, 2026
nicholasraimbault
added a commit
to nicholasraimbault/skytale
that referenced
this pull request
Apr 21, 2026
…pace Supersedes Dependabot PRs #324 (ecdysis) and #325 (tokio) — those two fail cargo-vet because Dependabot doesn't update supply-chain/config.toml. Bundling the lockfile bump with the matching exemption updates avoids the chicken-and-egg. Cargo.lock: - ecdysis 1.0.1 -> 1.1.0 (SEQPACKET socket support per cloudflare/ecdysis#14) - tokio 1.50.0 -> 1.51.1 (bug fixes: semaphore forget, UDP SO_ERROR surfacing) - cascading transitive bumps: tokio-macros 2.6.0->2.7.0, socket2 0.6.2->0.6.3, mio 1.1.1->1.2.0, libc 0.2.182->0.2.185 supply-chain/config.toml: - add exemptions.tokio = "1.51.1" (existing 1.50.0 is audited but cargo-vet flags the new version as unvetted) - roll exemptions forward: tokio-macros, socket2, mio, libc, ecdysis cargo vet and cargo check --workspace pass locally. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or 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
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.
Addresses #13
Adds
systemd_listen_unix_seqpacket, which listens on a systemd named socket in the same way assystemd_listen_unix.The only wrinkle here is that
UnixSeqpacketListenerdoes not implementFromRawFd- it provides afrom_raw_fdfunction but returns aResultinstead of a raw file descriptor. I added aTryFromRawFdtrait to unify the different interfaces.