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

23 lines
620 B
Protocol Buffer

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);
}