|
a/src/utils/mimeparse.h |
|
b/src/utils/mimeparse.h |
|
... |
|
... |
14 |
* Free Software Foundation, Inc.,
|
14 |
* Free Software Foundation, Inc.,
|
15 |
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
15 |
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
16 |
*/
|
16 |
*/
|
17 |
#ifndef _MIME_H_INCLUDED_
|
17 |
#ifndef _MIME_H_INCLUDED_
|
18 |
#define _MIME_H_INCLUDED_
|
18 |
#define _MIME_H_INCLUDED_
|
19 |
/* @(#$Id: mimeparse.h,v 1.8 2006-09-15 16:50:44 dockes Exp $ (C) 2004 J.F.Dockes */
|
19 |
/* @(#$Id: mimeparse.h,v 1.9 2006-09-22 07:42:55 dockes Exp $ (C) 2004 J.F.Dockes */
|
|
|
20 |
/*
|
|
|
21 |
Mime definitions RFC to 4-9-2006:
|
|
|
22 |
|
|
|
23 |
2045 Multipurpose Internet Mail Extensions (MIME) Part One: Format of
|
|
|
24 |
Internet Message Bodies. N. Freed, N. Borenstein. November 1996.
|
|
|
25 |
(Format: TXT=72932 bytes) (Obsoletes RFC1521, RFC1522, RFC1590)
|
|
|
26 |
(Updated by RFC2184, RFC2231) (Status: DRAFT STANDARD)
|
|
|
27 |
|
|
|
28 |
2046 Multipurpose Internet Mail Extensions (MIME) Part Two: Media
|
|
|
29 |
Types. N. Freed, N. Borenstein. November 1996. (Format: TXT=105854
|
|
|
30 |
bytes) (Obsoletes RFC1521, RFC1522, RFC1590) (Updated by RFC2646,
|
|
|
31 |
RFC3798) (Status: DRAFT STANDARD)
|
|
|
32 |
|
|
|
33 |
2047 MIME (Multipurpose Internet Mail Extensions) Part Three: Message
|
|
|
34 |
Header Extensions for Non-ASCII Text. K. Moore. November 1996.
|
|
|
35 |
(Format: TXT=33262 bytes) (Obsoletes RFC1521, RFC1522, RFC1590)
|
|
|
36 |
(Updated by RFC2184, RFC2231) (Status: DRAFT STANDARD)
|
|
|
37 |
|
|
|
38 |
2183 Communicating Presentation Information in Internet Messages: The
|
|
|
39 |
Content-Disposition Header Field. R. Troost, S. Dorner, K. Moore,
|
|
|
40 |
Ed.. August 1997. (Format: TXT=23150 bytes) (Updates RFC1806)
|
|
|
41 |
(Updated by RFC2184, RFC2231) (Status: PROPOSED STANDARD)
|
|
|
42 |
|
|
|
43 |
2231 MIME Parameter Value and Encoded Word Extensions: Character Sets,
|
|
|
44 |
Languages, and Continuations. N. Freed, K. Moore. November 1997.
|
|
|
45 |
(Format: TXT=19280 bytes) (Obsoletes RFC2184) (Updates RFC2045,
|
|
|
46 |
RFC2047, RFC2183) (Status: PROPOSED STANDARD)
|
|
|
47 |
*/
|
|
|
48 |
|
20 |
|
49 |
|
21 |
#include <time.h>
|
50 |
#include <time.h>
|
22 |
|
51 |
|
23 |
#include <string>
|
52 |
#include <string>
|
24 |
#include <map>
|
53 |
#include <map>
|