X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=h%2Fmhparse.h;h=782ab51a5ff3079ee77852520bc5f113ebee7c1b;hp=9d31c4ae680cd3021e75e2498f11c46ded2dfef8;hb=18591f8e001ecedbee48a51c1d1f08ebaa1c15c8;hpb=714b5c530ece27ea2835a313013f5b770163403c diff --git a/h/mhparse.h b/h/mhparse.h index 9d31c4a..782ab51 100644 --- a/h/mhparse.h +++ b/h/mhparse.h @@ -1,6 +1,6 @@ /* ** mhparse.h -- definitions for parsing/building of MIME content -** -- (mhparse.c/mhbuildsbr.c) +** -- (mhparse.c/mhbuild.c) */ #define NPARTS 50 @@ -94,18 +94,14 @@ struct Content { struct CTinfo c_ctinfo; /* parsed elements of Content-Type */ int c_type; /* internal flag for content type */ int c_subtype; /* internal flag for content subtype */ + char *c_charset; /* charset string */ /* Content-Transfer-Encoding info (decoded contents) */ CE c_cefile; /* structure holding decoded content */ int c_encoding; /* internal flag for encoding type */ - /* Content-MD5 info */ - int c_digested; /* have we seen this header before? */ - unsigned char c_digest[16]; /* decoded MD5 checksum */ - /* pointers to content-specific structures */ void *c_ctparams; /* content type specific data */ - struct exbody *c_ctexbody; /* data for type message/external */ /* function pointers */ InitFunc c_ctinitfnx; /* parse content body */ @@ -114,11 +110,8 @@ struct Content { SizeCEFunc c_cesizefnx; /* size of decoded contents */ int c_umask; /* associated umask */ - pid_t c_pid; /* process doing display */ - int c_rfc934; /* rfc934 compatibility flag */ char *c_showproc; /* default, if not in profile */ - char *c_termproc; /* for charset madness... */ char *c_storeproc; /* overrides profile entry, if any */ char *c_storage; /* write contents (file) */ @@ -214,24 +207,6 @@ struct partial { int pm_stored; }; -/* Structure for message/external */ -struct exbody { - CT eb_parent; /* pointer to controlling content structure */ - CT eb_content; /* pointer to internal content structure */ - char *eb_partno; - char *eb_access; - int eb_flags; - char *eb_name; - char *eb_permission; - char *eb_site; - char *eb_dir; - char *eb_mode; - unsigned long eb_size; - char *eb_server; - char *eb_subject; - char *eb_body; -}; - /* ** APPLICATION content */ @@ -266,7 +241,6 @@ struct str2init { }; extern struct str2init str2cts[]; extern struct str2init str2ces[]; -extern struct str2init str2methods[]; /* ** prototypes @@ -275,8 +249,6 @@ int pidcheck(int); CT parse_mime(char *); int add_header(CT, char *, char *); int get_ctinfo(unsigned char *, CT, int); -int params_external(CT, int); int open7Bit(CT, char **); void close_encoding(CT); - -extern int checksw; /* Add Content-MD5 field */ +char *extract_name_value(char *, char *);