Skip to content

Add VoidIRC — The Server Between Packets#17

Open
h4ksclaw wants to merge 1 commit into
obbyworld:mainfrom
h4ksclaw:add-fake-irc-server
Open

Add VoidIRC — The Server Between Packets#17
h4ksclaw wants to merge 1 commit into
obbyworld:mainfrom
h4ksclaw:add-fake-irc-server

Conversation

@h4ksclaw
Copy link
Copy Markdown

@h4ksclaw h4ksclaw commented Jun 6, 2026

Summary

Adds VoidIRC — The Server Between Packets, a fake IRC server that exists in the liminal space between TCP packets.

Server Details

Field Value
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 (obviously)

Technical Notes

  • Port 65535 (maximum valid port, one below overflow)
  • Hostname resolves to nowhere (as intended)
  • Negative ping time achieved via quantum tunneling
  • Obsidian mode enabled because this server transcends conventional reality

⚠️ This is a joke/fake entry per request.

Summary by CodeRabbit

  • New Features
    • Added new server configuration with secure WebSocket and IRC Secure connection endpoints.

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Jun 6, 2026

Review Change Stack

📝 Walkthrough

Walkthrough

A new IRC server configuration entry named "VoidIRC — The Server Between Packets" is added to servers.json. The entry specifies WebSocket Secure and IRC Secure protocol endpoints, both pointing to void.nullroute.localhost:65535, and enables the obsidian flag.

Changes

VoidIRC Server Configuration

Layer / File(s) Summary
VoidIRC server entry addition
servers.json
A new server object for "VoidIRC — The Server Between Packets" is inserted into the servers array with wss and ircs endpoints pointing to void.nullroute.localhost:65535 and obsidian set to true.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

  • obbyworld/server-list#11: Modifies the same servers.json server list by adding IRC server entries with wss/ircs endpoint configuration.

Poem

In void and null, a route appears,
A server born from digital tears,
Between the packets, silent it waits,
VoidIRC guards obsidian gates! 🌌

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately and directly describes the main change: adding a new server entry named 'VoidIRC — The Server Between Packets' to the servers.json file.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Warning

⚠️ This pull request might be slop. It has been flagged by CodeRabbit slop detection and should be reviewed carefully.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented Jun 6, 2026

Server list probe

Scope: 1 server(s) changed vs origin/main

Server wss ircs obsidian sasl voice
VoidIRC — The Server Between Packets

Failed — unreachable on every transport

  • VoidIRC — The Server Between Packets — wss: refused non-public address ::1; ircs: refused non-public address ::1

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@servers.json`:
- Line 56: The "obsidian" boolean in the JSON is incorrect given unreachable
endpoints; update the "obsidian" field from true to false (or remove/mark this
entry as test data) so it matches runtime detection logic that checks vendor
prefixes (obsidianirc/ or obby.world/) in probe.py; ensure the static
servers.json entry for "obsidian" aligns with the probe.py capability detection
behavior to avoid it being auto-corrected back to false at runtime.
- Around line 54-55: The servers.json entry contains unreachable endpoints: the
"wss" and "ircs" values use the fake host void.nullroute.localhost and port
65535 which clients will try to connect to and fail; remove or replace these
values in servers.json with valid, routable endpoints (or remove them from the
production server list entirely) so clients do not attempt to connect to
non-routable addresses, and ensure any placeholder/joke entries are kept out of
production configuration.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 79e4631b-47a7-4097-88c5-9446cfce473c

📥 Commits

Reviewing files that changed from the base of the PR and between cff8b52 and f0e6c42.

📒 Files selected for processing (1)
  • servers.json

Comment thread servers.json
Comment on lines +54 to +55
"wss": "wss://void.nullroute.localhost:65535",
"ircs": "ircs://void.nullroute.localhost:65535",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Unreachable endpoints will cause client connection failures.

The hostname void.nullroute.localhost with port 65535 cannot be reached:

  • .localhost domains typically resolve to 127.0.0.1, but nothing will be listening on port 65535
  • The hostname void.nullroute.localhost specifically suggests a non-routable address
  • Clients attempting to connect will experience immediate connection failures or timeouts

While 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
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@servers.json` around lines 54 - 55, The servers.json entry contains
unreachable endpoints: the "wss" and "ircs" values use the fake host
void.nullroute.localhost and port 65535 which clients will try to connect to and
fail; remove or replace these values in servers.json with valid, routable
endpoints (or remove them from the production server list entirely) so clients
do not attempt to connect to non-routable addresses, and ensure any
placeholder/joke entries are kept out of production configuration.

Comment thread servers.json
"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
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

The obsidian: true value is incorrect and will be auto-corrected to false.

The obsidian field should reflect actual IRC capabilities detected from a reachable server. From the probe script context (snippet 1), obsidian is derived by checking if any capability name starts with vendor prefixes (obsidianirc/ or obby.world/).

Since the endpoints are unreachable:

  • No IRC capabilities can be detected
  • If probe.py doesn't remove the entry, it will overwrite obsidian to false (snippet 3 shows the field update logic)
  • This creates a mismatch between the static configuration and the runtime-validated state

The correct value should be false, or better yet, this entry should be structured differently if it's intended as test data.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@servers.json` at line 56, The "obsidian" boolean in the JSON is incorrect
given unreachable endpoints; update the "obsidian" field from true to false (or
remove/mark this entry as test data) so it matches runtime detection logic that
checks vendor prefixes (obsidianirc/ or obby.world/) in probe.py; ensure the
static servers.json entry for "obsidian" aligns with the probe.py capability
detection behavior to avoid it being auto-corrected back to false at runtime.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant