Aditya Patwardhan 
							
						 
					 
					
						
						
							
						
						c707d0d323 
					 
					
						
						
							
							Fixed ssl_ctx not being freed at the time of error.  
						
						... 
						
						
						
						Closes https://github.com/espressif/esp-idf/issues/6143  
						
						
					 
					
						2020-11-25 13:47:38 +05:30 
						 
				 
			
				
					
						
							
							
								Angus Gratton 
							
						 
					 
					
						
						
							
						
						66fb5a29bb 
					 
					
						
						
							
							Whitespace: Automated whitespace fixes (large commit)  
						
						... 
						
						
						
						Apply the pre-commit hook whitespace fixes to all files in the repo.
(Line endings, blank lines at end of file, trailing whitespace) 
						
						
					 
					
						2020-11-11 07:36:35 +00:00 
						 
				 
			
				
					
						
							
							
								Angus Gratton 
							
						 
					 
					
						
						
							
						
						e82eac4354 
					 
					
						
						
							
							cmake: Apply cmakelint fixes  
						
						
						
						
					 
					
						2020-11-11 07:36:35 +00:00 
						 
				 
			
				
					
						
							
							
								David Cermak 
							
						 
					 
					
						
						
							
						
						fe862f413f 
					 
					
						
						
							
							https_server: Fix use of open_fn from application level  
						
						... 
						
						
						
						https-server uses the open_fn() callback and potentially overwrites user defined callback. This commit adds the user defined open_fn() to https-server's context and calls it upon openning a session 
						
						
					 
					
						2020-09-09 08:00:20 +02:00 
						 
				 
			
				
					
						
							
							
								Aditya Patwardhan 
							
						 
					 
					
						
						
							
						
						22b1607405 
					 
					
						
						
							
							esp_https_server: fix HTTPD_SSL_CONFIG_DEFAULT  
						
						... 
						
						
						
						This macro doesn't compile on C++. Order is fixed now.
Signed-off-by: Jean Pierre Dudey <jeandudey@hotmail.com >
Co-Authored-By: xkevin190 <kevinvelasco193@gmail.com >
Merges https://github.com/espressif/esp-idf/pull/4981  
						
						
					 
					
						2020-03-27 23:12:57 +08:00 
						 
				 
			
				
					
						
							
							
								Aditya Patwardhan 
							
						 
					 
					
						
						
							
						
						cc0eec52ff 
					 
					
						
						
							
							esp_https_server: Fixed a PR which adds support for mutual auth in  
						
						... 
						
						
						
						https_server
Closes https://github.com/espressif/esp-idf/pull/4184 
Closes IDFGH-2004 
						
						
					 
					
						2020-03-02 12:36:36 +05:30 
						 
				 
			
				
					
						
							
							
								Maximilian Schmidt 
							
						 
					 
					
						
						
							
						
						559cd57ea6 
					 
					
						
						
							
							Support MutualAuthentication in HTTPsServer  
						
						
						
						
					 
					
						2020-03-02 12:28:30 +05:30 
						 
				 
			
				
					
						
							
							
								David Cermak 
							
						 
					 
					
						
						
							
						
						25dd5e39af 
					 
					
						
						
							
							esp-tls: Naming variables refering to certificates and keys in a neutral way to suggest that both PEM and DER format could be used, added comments descibing important details about using these formats  
						
						
						
						
					 
					
						2019-08-02 09:25:16 +02:00 
						 
				 
			
				
					
						
							
							
								Jitin George 
							
						 
					 
					
						
						
							
						
						a8ebde227f 
					 
					
						
						
							
							esp_https_server: Add support for esp-tls server APIs  
						
						
						
						
					 
					
						2019-06-25 23:43:35 +00:00 
						 
				 
			
				
					
						
							
							
								Renz Christian Bagaporo 
							
						 
					 
					
						
						
							
						
						9eccd7c082 
					 
					
						
						
							
							components: use new component registration api  
						
						
						
						
					 
					
						2019-06-21 19:53:29 +08:00 
						 
				 
			
				
					
						
							
							
								Gregory Eslinger 
							
						 
					 
					
						
						
							
						
						7f1047847a 
					 
					
						
						
							
							HTTP Server: Added ability to select core  
						
						... 
						
						
						
						The task that runs the HTTP server can now be pinned to a particular core by setting `core_id`
in the HTTP server configuration.  By default, the core is set to `tskNO_AFFINITY`, meaning
it can run on any core.
Merges https://github.com/espressif/esp-idf/pull/3190  
						
						
					 
					
						2019-03-21 11:22:58 +08:00 
						 
				 
			
				
					
						
							
							
								Anurag Kar 
							
						 
					 
					
						
						
							
						
						1af5d0d87c 
					 
					
						
						
							
							https_server : Missing uri_match_fn paramater added to default config  
						
						
						
						
					 
					
						2019-02-25 09:13:39 +00:00 
						 
				 
			
				
					
						
							
							
								Anurag Kar 
							
						 
					 
					
						
						
							
						
						a6f18bda47 
					 
					
						
						
							
							https_server : add extern C directive and other minor changes for C++ support  
						
						... 
						
						
						
						Closes https://github.com/espressif/esp-idf/issues/2887  
						
						
					 
					
						2018-12-31 15:12:42 +05:30 
						 
				 
			
				
					
						
							
							
								Anurag Kar 
							
						 
					 
					
						
						
							
						
						1d3f4074de 
					 
					
						
						
							
							esp_https_server : change config option secure_enable to transport_mode and some minor changes  
						
						... 
						
						
						
						transport_mode accepts enum httpd_ssl_transport_t instead of true/false.
This will allow for extension to dual mode (server running on both secure and insecure ports) in the future. 
						
						
					 
					
						2018-11-19 04:00:21 +00:00 
						 
				 
			
				
					
						
							
							
								Anurag Kar 
							
						 
					 
					
						
						
							
						
						aa6066a197 
					 
					
						
						
							
							esp_https_server : Docs and API references fixed  
						
						
						
						
					 
					
						2018-11-19 04:00:21 +00:00 
						 
				 
			
				
					
						
							
							
								Ondřej Hruška 
							
						 
					 
					
						
						
							
						
						4dd0fa61e9 
					 
					
						
						
							
							Add a 'esp_https_server' component allowing to use http_server with OpenSSL  
						
						
						
						
					 
					
						2018-11-19 04:00:21 +00:00