Files
csdemo/Protobufs/steam/steammessages_gamenetworking.steamclient.proto
2024-09-15 05:09:15 +02:00

26 lines
746 B
Protocol Buffer

import "steammessages_base.proto";
import "steammessages_unified_base.steamclient.proto";
option cc_generic_services = true;
message CGameNetworking_AllocateFakeIP_Request {
optional uint32 app_id = 1;
optional uint32 num_fake_ports = 2;
}
message CGameNetworking_AllocateFakeIP_Response {
optional fixed32 fake_ip = 1;
repeated uint32 fake_ports = 2;
}
message CGameNetworking_ReleaseFakeIP_Notification {
optional uint32 app_id = 1;
optional fixed32 fake_ip = 2;
repeated uint32 fake_ports = 3;
}
service GameNetworking {
rpc AllocateFakeIP (.CGameNetworking_AllocateFakeIP_Request) returns (.CGameNetworking_AllocateFakeIP_Response);
rpc NotifyReleaseFakeIP (.CGameNetworking_ReleaseFakeIP_Notification) returns (.NoResponse);
}