mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-02-12 10:45:32 +00:00
removed old stub
This commit is contained in:
@ -1460,17 +1460,6 @@ int http_fn_uart_tool(http_request_t* request) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
int http_fn_config_dump_table(http_request_t* request) {
|
||||
http_setup(request, httpMimeTypeHTML);
|
||||
http_html_start(request, "Dump config");
|
||||
poststr(request, "Not implemented <br>");
|
||||
|
||||
poststr(request, htmlFooterReturnToCfgLink);
|
||||
http_html_end(request);
|
||||
poststr(request, NULL);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -6,7 +6,6 @@ int http_fn_about(http_request_t* request);
|
||||
int http_fn_cfg_mqtt(http_request_t* request);
|
||||
int http_fn_cfg_mqtt_set(http_request_t* request);
|
||||
int http_fn_cfg_webapp(http_request_t* request);
|
||||
int http_fn_config_dump_table(http_request_t* request);
|
||||
int http_fn_cfg_webapp_set(http_request_t* request);
|
||||
int http_fn_cfg_wifi_set(http_request_t* request);
|
||||
int http_fn_cfg_name(http_request_t* request);
|
||||
|
||||
@ -681,7 +681,6 @@ int HTTP_ProcessPacket(http_request_t* request) {
|
||||
if (http_checkUrlBase(urlStr, "flash_read_tool")) return http_fn_flash_read_tool(request);
|
||||
if (http_checkUrlBase(urlStr, "uart_tool")) return http_fn_uart_tool(request);
|
||||
if (http_checkUrlBase(urlStr, "cmd_tool")) return http_fn_cmd_tool(request);
|
||||
if (http_checkUrlBase(urlStr, "config_dump_table")) return http_fn_config_dump_table(request);
|
||||
if (http_checkUrlBase(urlStr, "startup_command")) return http_fn_startup_command(request);
|
||||
if (http_checkUrlBase(urlStr, "cfg_generic")) return http_fn_cfg_generic(request);
|
||||
if (http_checkUrlBase(urlStr, "cfg_startup")) return http_fn_cfg_startup(request);
|
||||
|
||||
Reference in New Issue
Block a user