mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-31 21:14:37 +00:00 
			
		
		
		
	 66fb5a29bb
			
		
	
	66fb5a29bb
	
	
	
		
			
			Apply the pre-commit hook whitespace fixes to all files in the repo. (Line endings, blank lines at end of file, trailing whitespace)
		
			
				
	
	
		
			31 lines
		
	
	
		
			497 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			497 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto3";
 | |
| 
 | |
| enum WifiStationState {
 | |
|     Connected = 0;
 | |
|     Connecting = 1;
 | |
|     Disconnected = 2;
 | |
|     ConnectionFailed = 3;
 | |
| }
 | |
| 
 | |
| enum WifiConnectFailedReason {
 | |
|     AuthError = 0;
 | |
|     NetworkNotFound = 1;
 | |
| }
 | |
| 
 | |
| enum WifiAuthMode {
 | |
|     Open = 0;
 | |
|     WEP  = 1;
 | |
|     WPA_PSK = 2;
 | |
|     WPA2_PSK = 3;
 | |
|     WPA_WPA2_PSK = 4;
 | |
|     WPA2_ENTERPRISE = 5;
 | |
| }
 | |
| 
 | |
| message WifiConnectedState {
 | |
|     string ip4_addr = 1;
 | |
|     WifiAuthMode auth_mode = 2;
 | |
|     bytes ssid = 3;
 | |
|     bytes bssid = 4;
 | |
|     int32 channel = 5;
 | |
| }
 |