Dependents:   Nucleo

Embed: (wiki syntax)

« Back to documentation index

HttpAuthorizationHeader Struct Reference

HttpAuthorizationHeader Struct Reference

Authorization header. More...

#include <http_server.h>

Data Fields

bool_t found
 The Authorization header has been found.
HttpAuthMode mode
 Authentication scheme.
char_t user [HTTP_SERVER_USERNAME_MAX_LEN+1]
 User name.
const char_t * password
 Password.
const char_t * nonce
 Server nonce.
const char_t * uri
 Digest URI.
const char_t * nc
 Nonce count.
const char_t * cnonce
 Client nonce.

Detailed Description

Authorization header.

Definition at line 432 of file http_server.h.


Field Documentation

const char_t* cnonce

Client nonce.

Definition at line 446 of file http_server.h.

bool_t found

The Authorization header has been found.

Definition at line 434 of file http_server.h.

Authentication scheme.

Definition at line 435 of file http_server.h.

const char_t* nc

Nonce count.

Definition at line 445 of file http_server.h.

const char_t* nonce

Server nonce.

Definition at line 442 of file http_server.h.

const char_t* password

Password.

Definition at line 438 of file http_server.h.

const char_t* uri

Digest URI.

Definition at line 443 of file http_server.h.

char_t user[HTTP_SERVER_USERNAME_MAX_LEN+1]

User name.

Definition at line 436 of file http_server.h.