Files
filament/third_party/civetweb/docs/api/mg_client_cert.md
Philip Rideout 6d74d31ecd Add civetweb to third_party (MIT).
This is a dependency of our upcoming web-based material debugger. This
CL also includes `tnt/CMakeLists.txt`, which builds a static lib in a
minimal configuration that enables WebSocket support. The entire library
is built from only 4 files:

    ${PUBLIC_HDR_DIR}/CivetServer.h
    ${PUBLIC_HDR_DIR}/civetweb.h
    ${SRC_DIR}/civetweb.c
    ${SRC_DIR}/CivetServer.cpp
2019-08-21 17:45:37 -07:00

697 B

Civetweb API Reference

struct mg_client_cert;

Fields

Field Type Description
subject const char * The subject of the certificate
issuer const char * The issuer of the certificate
serial const char * The serial number of the certificate
finger const char * The fingerprint of the certificate

Description

The structure client_cert is used as a sub-structure in the mg_request_info structure to store information of an optional client supplied certificate.

See Also