Initial import

This commit is contained in:
belliash
2013-06-28 18:48:22 +02:00
parent 316c558692
commit b0c2270f15
13 changed files with 3422 additions and 4 deletions

20
mime_enc.h Normal file
View File

@@ -0,0 +1,20 @@
/**
* @PROJECT Kagera uHTTP Daemon
* @COPYRIGHT See COPYING in the top level directory
* @FILE mime_enc.h
* @PURPOSE MIME encodings list
* @DEVELOPERS Rafal Kupiec <belliash@asiotec.eu.org>
*/
#ifndef __MIME_ENC_H
#define __MIME_ENC_H
static struct mime_entry enc_tab[] = {
{ "Z", 0, "compress", 0 },
{ "gz", 0, "gzip", 0 },
{ "uu", 0, "x-uuencode", 0 },
};
static const int n_enc_tab = sizeof(enc_tab) / sizeof(*enc_tab);
#endif