β Belfast
Belfast is a private server reimplementation for the mobile game Azur Lane, written in Go using Iris and Gorm. It targets iOS and Android clients without requiring jailbreak or root access.

π Features
Belfast currently has:
- A low-level multiplexed TCP server, which allows multiple connections at once.
- The ability of following game updates, along with importing ship, items, ... data automatically (US version).
- A small API that allows you to quickly implement new game messages without head scratching.
- A great dissection tool in which every packet is stored, along with a
protobuf -> json deserializer.
- A REST API with Swagger docs and admin endpoints for server tooling.
- A web UI in development: https://github.com/ggmolly/belfast-web.
- Config-driven packet response hydration for rapid prototyping.
- Packet progress tooling and webhook-based status updates.
- Runtime config toggles (maintenance mode, host/port overrides).
βοΈ Config
cmd/belfast defaults to server.toml (game server config).
cmd/gateway defaults to gateway.toml (gateway config).
- Region is configured via
[region].default (CN, EN, JP, KR, TW) and defaults to EN.
- Gateway server list is defined in
[[servers]]; set optional name per server for display text, and gateway probes each game server over the game protocol (CS_10022 -> SC_10023) to resolve server state and load.
- To embed the git commit in status, build with
-ldflags "-X github.com/ggmolly/belfast/internal/buildinfo.Commit=$(git rev-parse --short HEAD)".
π Reporting Issues
- Use the GitHub issue forms for bug reports and feature requests.
- Bug reports support region selection and optional debugging attachments:
.pcap captures
- ADB logcat output from the ADB watcher (
-a / --adb)
- Useful local command when collecting ADB logs:
π State
Belfast reimplements all features from the game (except for background tasks).
π Roadmap
- Clean up the code
- Reach 100% coverage on packet reimplementation
- Implement game tracking (opt-in in server config for administrators)
- Maintain more belfast-web