mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-30 20:51:41 +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)
		
			
				
	
	
		
			24 lines
		
	
	
		
			636 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			636 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* OpenSSL server Example
 | |
| 
 | |
|    This example code is in the Public Domain (or CC0 licensed, at your option.)
 | |
| 
 | |
|    Unless required by applicable law or agreed to in writing, this
 | |
|    software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 | |
|    CONDITIONS OF ANY KIND, either express or implied.
 | |
| */
 | |
| 
 | |
| #ifndef _OPENSSL_SERVER_H_
 | |
| #define _OPENSSL_SERVER_H_
 | |
| 
 | |
| #include "sdkconfig.h"
 | |
| 
 | |
| #define OPENSSL_EXAMPLE_TASK_NAME        "openssl_example"
 | |
| #define OPENSSL_EXAMPLE_TASK_STACK_WORDS 10240
 | |
| #define OPENSSL_EXAMPLE_TASK_PRIORITY    8
 | |
| 
 | |
| #define OPENSSL_EXAMPLE_RECV_BUF_LEN       1024
 | |
| 
 | |
| #define OPENSSL_EXAMPLE_LOCAL_TCP_PORT     443
 | |
| 
 | |
| #endif
 |