aboutsummaryrefslogtreecommitdiff
path: root/redirect_command.proto
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-06-12 07:02:50 -0700
committerFuwn <[email protected]>2024-06-12 07:02:50 -0700
commiteb78b1a9592d8bd1234beb18fe8141ef705d97ee (patch)
tree2aa951640d15871e5ac17540a984cc3fb0e421a6 /redirect_command.proto
parentrefactor: clearer comamnd names (diff)
downloadworldserver-protobufs-eb78b1a9592d8bd1234beb18fe8141ef705d97ee.tar.xz
worldserver-protobufs-eb78b1a9592d8bd1234beb18fe8141ef705d97ee.zip
refactor: use snake case (style guide)
Diffstat (limited to 'redirect_command.proto')
-rw-r--r--redirect_command.proto12
1 files changed, 12 insertions, 0 deletions
diff --git a/redirect_command.proto b/redirect_command.proto
new file mode 100644
index 0000000..7c1ce16
--- /dev/null
+++ b/redirect_command.proto
@@ -0,0 +1,12 @@
+syntax = "proto3";
+
+package whirl;
+
+message RedirectCommand {
+ int32 room_number = 1;
+ int32 ip_1 = 2;
+ int32 ip_2 = 3;
+ int32 ip_3 = 4;
+ int32 ip_4 = 5;
+ int32 port = 6;
+}