* Shutdown the Web server */
| 80 | * Shutdown the Web server |
| 81 | */ |
| 82 | void ESP32WebCam::stopCameraServer(void) { |
| 83 | if (_stream_d) { |
| 84 | httpd_stop(_stream_d); |
| 85 | _stream_d = nullptr; |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Start Web server that allows to stream motion JPEG. The port number can be |
nothing calls this directly
no outgoing calls
no test coverage detected