Function silc_mime_decode
SYNOPSIS
SilcMime silc_mime_decode(const unsigned char *data,
SilcUInt32 data_len);
DESCRIPTION
Decodes a MIME message and returns the parsed message into newly
allocated SilcMime context.
EXAMPLE
// Parse MIME message and get its content type
mime = silc_mime_decode(data, data_len);
type = silc_mime_get_field(mime, "Content-Type");
...
// Assemble received MIME fragment
mime = silc_mime_decode(data, data_len);
if (silc_mime_is_partial(mime) == TRUE)
silc_mime_assmeble(assembler, mime);
|