mirror of
				https://git.proxmox.com/git/fwupd
				synced 2025-10-31 14:14:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			459 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			459 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 1999-2021 Logitech, Inc.
 | |
|  * All Rights Reserved
 | |
|  *
 | |
|  * SPDX-License-Identifier: LGPL-2.1+
 | |
|  */
 | |
| 
 | |
| syntax = "proto3";
 | |
| 
 | |
| package logi.device.proto;
 | |
| 
 | |
| option java_package = "com.logitech.vc.proto";
 | |
| 
 | |
| /**
 | |
|  * Request for setting device time
 | |
|  * This is to be included in UsbMsg
 | |
|  */
 | |
| message SetDeviceTimeRequest
 | |
| {
 | |
| 	/**
 | |
| 	 * utc timestamp.
 | |
| 	 */
 | |
| 	uint64 ts = 1;
 | |
| 	/**
 | |
| 	 * the time zone.
 | |
| 	 */
 | |
| 	string time_zone = 2;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * Send an ack as the response
 | |
|  */
 | 
