summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrançois Revel <mmu_man@netsurf-browser.org>2008-10-03 03:40:42 +0000
committerFrançois Revel <mmu_man@netsurf-browser.org>2008-10-03 03:40:42 +0000
commit209c72b0113b5235a49af7a16e2aecb8e9f9c8ef (patch)
tree825dcad0e1a2827583e4b98562aceec8adc3b10f
parent0980d865b43982084cf6d8af17436c664e33af5b (diff)
downloadnetsurf-209c72b0113b5235a49af7a16e2aecb8e9f9c8ef.tar.gz
netsurf-209c72b0113b5235a49af7a16e2aecb8e9f9c8ef.tar.bz2
Add a function to tell the mime type for a content type.
svn path=/trunk/netsurf/; revision=5478
-rw-r--r--content/content.c17
-rw-r--r--content/content.h1
2 files changed, 18 insertions, 0 deletions
diff --git a/content/content.c b/content/content.c
index 935f3657f..090eb399d 100644
--- a/content/content.c
+++ b/content/content.c
@@ -383,6 +383,23 @@ content_type content_lookup(const char *mime_type)
/**
+ * Convert a content_type to a MIME type.
+ *
+ */
+
+const char *content_mime(content_type type)
+{
+ struct mime_entry *m;
+ int i;
+ m = mime_map;
+ for (i = MIME_MAP_COUNT - 1; i >= 0; i--)
+ if (m[i].type == type)
+ return m[i].mime_type;
+ return "application/octet-stream";
+}
+
+
+/**
* Create a new content structure.
*
* \param url URL of content, copied
diff --git a/content/content.h b/content/content.h
index 75be8cfb1..a75fd22b2 100644
--- a/content/content.h
+++ b/content/content.h
@@ -281,6 +281,7 @@ extern const char * const content_status_name[];
content_type content_lookup(const char *mime_type);
+const char *content_mime(content_type type);
struct content * content_create(const char *url);
struct content * content_get(const char *url);
struct content * content_get_ready(const char *url);