1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00
elinks/src/mime/mime.h
Petr Baudis 0f6d4310ad Initial commit of the HEAD branch of the ELinks CVS repository, as of
Thu Sep 15 15:57:07 CEST 2005. The previous history can be added to this
by grafting.
2005-09-15 15:58:31 +02:00

38 lines
1.1 KiB
C

/* $Id: mime.h,v 1.19 2005/06/13 00:43:28 jonas Exp $ */
#ifndef EL__MIME_MIME_H
#define EL__MIME_MIME_H
#include "main/module.h"
struct cache_entry;
struct uri;
struct mime_handler {
unsigned char *description;
unsigned char *backend_name;
unsigned int ask:1;
unsigned int block:1;
unsigned char program[1]; /* XXX: Keep last! */
};
extern struct module mime_module;
/* Guess content type of the document. Either from the protocol header or
* scanning the uri for extensions. */
unsigned char *get_content_type(struct cache_entry *cached);
/* Guess content type by looking at configurations of the given @extension */
unsigned char *get_extension_content_type(unsigned char *extension);
/* Find program to handle mimetype. The @xwin tells about X capabilities. */
struct mime_handler *
get_mime_type_handler(unsigned char *content_type, int xwin);
/* Extracts strictly the filename part (the crap between path and query) and
* adds it to the @string. Note that there are cases where the string will be
* empty ("") (ie. http://example.com/?crash=elinks). */
struct string *add_mime_filename_to_string(struct string *string, struct uri *uri);
#endif