-
Notifications
You must be signed in to change notification settings - Fork 5
Add VoidIRC — The Server Between Packets #17
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -47,5 +47,12 @@ | |
| "wss": "wss://irc.mirc.club:8000/", | ||
| "ircs": "ircs://irc.mirc.club:6697", | ||
| "obsidian": false | ||
| }, | ||
| { | ||
| "name": "VoidIRC — The Server Between Packets", | ||
| "description": "A server that exists in the brief moment between TCP SYN and ACK. Messages arrive before they're sent. RFC compliance is a suggestion. Ping time: -42ms.", | ||
| "wss": "wss://void.nullroute.localhost:65535", | ||
| "ircs": "ircs://void.nullroute.localhost:65535", | ||
| "obsidian": true | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The The Since the endpoints are unreachable:
The correct value should be 🤖 Prompt for AI Agents |
||
| } | ||
| ] | ||
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.
Unreachable endpoints will cause client connection failures.
The hostname
void.nullroute.localhostwith port65535cannot be reached:.localhostdomains typically resolve to127.0.0.1, but nothing will be listening on port 65535void.nullroute.localhostspecifically suggests a non-routable addressWhile this is marked as a joke entry in the PR description, it's still part of the production server list that clients will attempt to use.
🤖 Prompt for AI Agents