aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/basicauth.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/basicauth.h')
-rw-r--r--src/microhttpd/basicauth.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/microhttpd/basicauth.h b/src/microhttpd/basicauth.h
index c3ba4a4b..c46fe27a 100644
--- a/src/microhttpd/basicauth.h
+++ b/src/microhttpd/basicauth.h
@@ -28,10 +28,17 @@
28#ifndef MHD_BASICAUTH_H 28#ifndef MHD_BASICAUTH_H
29#define MHD_BASICAUTH_H 1 29#define MHD_BASICAUTH_H 1
30 30
31#include "mhd_str.h"
32
31/** 33/**
32 * Beginning string for any valid Basic authentication header. 34 * Beginning string for any valid Basic authentication header.
33 */ 35 */
34#define _MHD_AUTH_BASIC_BASE "Basic " 36#define _MHD_AUTH_BASIC_BASE "Basic"
37
38struct MHD_RqBAuth
39{
40 struct _MHD_cstr_w_len token68;
41};
35 42
36#endif /* ! MHD_BASICAUTH_H */ 43#endif /* ! MHD_BASICAUTH_H */
37 44