SYNOPSIS |
#include <dkim.h>
DKIM_STAT dkim_free(
DKIM *dkim
);
Release resources associated with a signing or verifying handle.
|
DESCRIPTION |
Called When |
dkim_free() must be passed a handle returned by
dkim_sign() or
dkim_verify() |
Effects |
Releases resources that were allocated and assigned to the handle
dkim when it was returned by dkim_sign() or
dkim_verify(). The handle dkim may not be reused. |
|
---|
ARGUMENTS |
Argument | Description |
dkim |
A DKIM handle returned by a previous call to dkim_sign()
or dkim_verify().
|
|
RETURN VALUES |
- DKIM_STAT_OK -- operation was successful
|
NOTES |
None.
|