SYNOPSIS |
#include <dmarc.h>
OPENDMARC_STATUS_T opendmarc_policy_fetch_adkim(
DMARC_POLICY_T *pctx,
int *adkim
);
Query the library to find the adkim= value from the DMARC record.
|
DESCRIPTION |
Called When |
opendmarc_policy_fetch_adkim()
is called after the DMARC record has been fetched and parsed.
|
|
---|
ARGUMENTS |
Argument | Description |
pctx |
The address of a structure of type
DMARC_POLICY_T as returned from opendmarc_policy_connect_init().
|
adkim |
The address of an integer to receive the value following the adkim=, a value of:
DMARC_RECORD_A_UNSPECIFIED if the adkim= was absent or
DMARC_RECORD_A_STRICT if adkim=s or
DMARC_RECORD_A_RELAXED if adkim=r.
|
|
RETURN VALUES |
- DMARC_PARSE_OKAY -- On success.
- DMARC_PARSE_ERROR_EMPTY -- The pctp pointer was NULL.
- DMARC_PARSE_ERROR_NULL_CTX -- If you passed in a adkim value that was NULL.
|
NOTES |
|