| SYNOPSIS |
#include <dkim.h>
DKIM_STAT dkim_body(
DKIM *dkim,
unsigned char *bodyp,
size_t len
);
Handle a piece of a message's body.
|
| DESCRIPTION |
|
|---|
| ARGUMENTS |
| Argument | Description |
| dk |
Message-specific handle, returned by
dkim_sign() or
dkim_verify()
|
| bodyp |
Pointer to the start of this block of body data. |
| len |
The amount of data pointed to by bodyp.
|
|
| NOTES |
- bodyp points to a sequence of bytes. It is not expected
to be a C string (a sequence of characters that is terminated by '\0').
|