pythonhacktoberfeststeamauthenticationauthenticatorsteam-authenticatorsteam-clientsteam-guard-codessteam-websteamworksvalvewebapi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
syntax = "proto2";
|
|
import "steammessages_base.proto";
|
|
import "steammessages_unified_base.proto";
|
|
import "offline_ticket.proto";
|
|
|
|
option py_generic_services = true;
|
|
|
|
message COffline_GetOfflineLogonTicket_Request {
|
|
optional uint32 priority = 1;
|
|
optional bool perform_encryption = 2;
|
|
}
|
|
|
|
message COffline_GetOfflineLogonTicket_Response {
|
|
optional bytes serialized_ticket = 1;
|
|
optional bytes signature = 2;
|
|
optional .Offline_Ticket encrypted_ticket = 3;
|
|
}
|
|
|
|
message COffline_GetUnsignedOfflineLogonTicket_Request {
|
|
}
|
|
|
|
message COffline_OfflineLogonTicket {
|
|
optional uint32 accountid = 1;
|
|
optional fixed32 rtime32_creation_time = 2;
|
|
}
|
|
|
|
message COffline_GetUnsignedOfflineLogonTicket_Response {
|
|
optional .COffline_OfflineLogonTicket ticket = 1;
|
|
}
|
|
|
|
service Offline {
|
|
option (service_description) = "Offline settings service";
|
|
|
|
rpc GetOfflineLogonTicket (.COffline_GetOfflineLogonTicket_Request) returns (.COffline_GetOfflineLogonTicket_Response) {
|
|
option (method_description) = "Get a serialized and signed offline logon ticket for the current user";
|
|
}
|
|
|
|
rpc GetUnsignedOfflineLogonTicket (.COffline_GetUnsignedOfflineLogonTicket_Request) returns (.COffline_GetUnsignedOfflineLogonTicket_Response) {
|
|
option (method_description) = "Get an unsigned offline logon ticket for the current user";
|
|
}
|
|
}
|
|
|