mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-02-10 16:15:42 +00:00
* add http basic auth * add feature check for basic auth process * fix http basic auth build for unsupported platforms (W800, W600) * fix includes in http_basic_auth * fix basic auth invocations when unavailable * add http basic auth allow checks to http_fns * remove unnecessary checks * add my_strnicmp export * silence warning * update web password config ui * update submodules * add base64 lib to boufallo.mk for BL602 * add safe mode http basic auth bypass flag * fix bl602 build with http auth bypass flag * disable shared led driver --------- Co-authored-by: Tester23 <openshwprojects@gmail.com>
12 lines
247 B
C
12 lines
247 B
C
#ifndef _HTTP_BASIC_AUTH_H
|
|
#define _HTTP_BASIC_AUTH_H
|
|
|
|
#include "new_http.h"
|
|
|
|
#define HTTP_BASIC_AUTH_FAIL 0
|
|
#define HTTP_BASIC_AUTH_OK 1
|
|
|
|
int http_basic_auth_eval(http_request_t *request);
|
|
int http_basic_auth_run(http_request_t *request);
|
|
|
|
#endif |