kuhttpd/mime_enc.h

21 linhas
451 B
C

2013-06-28 18:48:22 +02:00
/**
* @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