mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	
		
			
	
	
		
			15 lines
		
	
	
		
			282 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
		
		
			
		
	
	
			15 lines
		
	
	
		
			282 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| 
								 | 
							
								syntax = "proto3";
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/* Allowed values for the status
							 | 
						||
| 
								 | 
							
								 * of a protocomm instance */
							 | 
						||
| 
								 | 
							
								enum Status {
							 | 
						||
| 
								 | 
							
								    Success = 0;
							 | 
						||
| 
								 | 
							
								    InvalidSecScheme = 1;
							 | 
						||
| 
								 | 
							
								    InvalidProto = 2;
							 | 
						||
| 
								 | 
							
								    TooManySessions = 3;
							 | 
						||
| 
								 | 
							
								    InvalidArgument = 4;
							 | 
						||
| 
								 | 
							
								    InternalError = 5;
							 | 
						||
| 
								 | 
							
								    CryptoError = 6;
							 | 
						||
| 
								 | 
							
								    InvalidSession = 7;
							 | 
						||
| 
								 | 
							
								}
							 |