Fix error code collision and CI check

This commit is contained in:
Roland Dobai
2019-08-27 11:12:49 +02:00
committed by Roland Dobai
parent c9bff93080
commit 1402e78844
5 changed files with 306 additions and 204 deletions

View File

@@ -53,7 +53,7 @@ initializer that should be kept in sync
.uri_match_fn = NULL \
}
#define ESP_ERR_HTTPD_BASE (0x8000) /*!< Starting number of HTTPD error codes */
#define ESP_ERR_HTTPD_BASE (0xb000) /*!< Starting number of HTTPD error codes */
#define ESP_ERR_HTTPD_HANDLERS_FULL (ESP_ERR_HTTPD_BASE + 1) /*!< All slots for registering URI handlers have been consumed */
#define ESP_ERR_HTTPD_HANDLER_EXISTS (ESP_ERR_HTTPD_BASE + 2) /*!< URI handler with same method and target URI already registered */
#define ESP_ERR_HTTPD_INVALID_REQ (ESP_ERR_HTTPD_BASE + 3) /*!< Invalid request pointer */