initial import from steam-vent repo

This commit is contained in:
Robin Appelman 2025-09-07 22:35:14 +02:00
commit d936a6049b
237 changed files with 607341 additions and 0 deletions

View file

@ -0,0 +1,22 @@
import "steammessages_base.proto";
import "webuimessages_base.proto";
option optimize_for = SPEED;
option cc_generic_services = true;
message CTransportAuth_Authenticate_Request {
optional string auth_key = 1;
}
message CTransportAuth_Authenticate_Response {
}
message CTransportAuth_StartShutdown_Notification {
}
service TransportAuth {
option (webui_service_execution_site) = k_EClientExecutionSiteAny;
rpc Authenticate (.CTransportAuth_Authenticate_Request) returns (.CTransportAuth_Authenticate_Response);
rpc NotifyStartShutdown (.CTransportAuth_StartShutdown_Notification) returns (.WebUINoResponse);
}