Skip to content

Commit

Permalink
Disable RTSP authentication if parameter is left unspecified
Browse files Browse the repository at this point in the history
  • Loading branch information
wberube committed Oct 30, 2024
1 parent 1558cb8 commit 09ce4df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,10 @@ enum ConfigError parse_app_config(void) {
app_config.web_server_thread_stack_size = 32 * 1024;
app_config.watchdog = 0;

app_config.mdns_enable = false;
app_config.osd_enable = false;
app_config.rtsp_enable = false;
app_config.mdns_enable = false;
app_config.rtsp_enable_auth = false;

app_config.sensor_config[0] = 0;
app_config.audio_enable = false;
Expand Down

0 comments on commit 09ce4df

Please sign in to comment.