diff options
| author | Fuwn <[email protected]> | 2024-06-12 06:44:59 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-12 06:45:04 -0700 |
| commit | 44d31816b8d42c4299c2d75b12141c0c5c8f99b4 (patch) | |
| tree | ad483414a6ee3e211aaf89428d5e3a7b23644112 | |
| parent | refactor: rename location commands (diff) | |
| download | worldserver-protobufs-44d31816b8d42c4299c2d75b12141c0c5c8f99b4.tar.xz worldserver-protobufs-44d31816b8d42c4299c2d75b12141c0c5c8f99b4.zip | |
refactor: clearer request commands names
| -rw-r--r-- | FingerRequestCmd.proto (renamed from FingerReqCmd.proto) | 2 | ||||
| -rw-r--r-- | NetPacket.proto | 12 | ||||
| -rw-r--r-- | PropRequestCmd.proto (renamed from PropReqCmd.proto) | 2 | ||||
| -rw-r--r-- | RoomIDRequestCmd.proto (renamed from RoomIDReqCmd.proto) | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/FingerReqCmd.proto b/FingerRequestCmd.proto index 1c1918e..2fac2d5 100644 --- a/FingerReqCmd.proto +++ b/FingerRequestCmd.proto @@ -2,6 +2,6 @@ syntax = "proto3"; package whirl; -message FingerReqCmd { +message FingerRequestCmd { string user = 1; } diff --git a/NetPacket.proto b/NetPacket.proto index 3e5f7c1..63410de 100644 --- a/NetPacket.proto +++ b/NetPacket.proto @@ -10,15 +10,15 @@ import "BuddyListUpdateCmd.proto"; import "ChannelCmd.proto"; import "DisappearActorCmd.proto"; import "FingerReplyCmd.proto"; -import "FingerReqCmd.proto"; +import "FingerRequestCmd.proto"; import "LongLocationCmd.proto"; import "PropertySetCmd.proto"; import "PropertyUpdateCmd.proto"; -import "PropReqCmd.proto"; +import "PropRequestCmd.proto"; import "RedirectCmd.proto"; import "RedirectIDCmd.proto"; import "RoomIDCmd.proto"; -import "RoomIDReqCmd.proto"; +import "RoomIDRequestCmd.proto"; import "SessionExitCmd.proto"; import "SessionInitCmd.proto"; import "ShortLocationCmd.proto"; @@ -45,15 +45,15 @@ message NetPacket { ChannelCmd channel_cmd = 10; DisappearActorCmd disappear_actor_cmd = 11; FingerReplyCmd finger_reply_cmd = 12; - FingerReqCmd finger_req_cmd = 13; + FingerRequestCmd finger_request_cmd = 13; LongLocationCmd long_location_cmd = 14; PropertySetCmd property_set_cmd = 15; PropertyUpdateCmd property_update_cmd = 16; - PropReqCmd prop_req_cmd = 17; + PropRequestCmd prop_request_cmd = 17; RedirectCmd redirect_cmd = 18; RedirectIDCmd redirect_id_cmd = 19; RoomIDCmd room_id_cmd = 20; - RoomIDReqCmd room_id_req_cmd = 21; + RoomIDRequestCmd room_id_request_cmd = 21; SessionExitCmd session_exit_cmd = 22; SessionInitCmd session_init_cmd = 23; ShortLocationCmd short_location_cmd = 24; diff --git a/PropReqCmd.proto b/PropRequestCmd.proto index 77a3bf3..0de7449 100644 --- a/PropReqCmd.proto +++ b/PropRequestCmd.proto @@ -2,6 +2,6 @@ syntax = "proto3"; package whirl; -message PropReqCmd { +message PropRequestCmd { repeated int32 variable_ids = 1; } diff --git a/RoomIDReqCmd.proto b/RoomIDRequestCmd.proto index 36646d5..2bb65d9 100644 --- a/RoomIDReqCmd.proto +++ b/RoomIDRequestCmd.proto @@ -2,6 +2,6 @@ syntax = "proto3"; package whirl; -message RoomIDReqCmd { +message RoomIDRequestCmd { string room_name = 1; } |