summaryrefslogtreecommitdiff
path: root/content/content.c
diff options
context:
space:
mode:
Diffstat (limited to 'content/content.c')
-rw-r--r--content/content.c17
1 files changed, 17 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