aboutsummaryrefslogtreecommitdiff
path: root/vendor/luasocket/src/mime.h
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/luasocket/src/mime.h')
-rw-r--r--vendor/luasocket/src/mime.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/luasocket/src/mime.h b/vendor/luasocket/src/mime.h
new file mode 100644
index 00000000..4d938f46
--- /dev/null
+++ b/vendor/luasocket/src/mime.h
@@ -0,0 +1,22 @@
1#ifndef MIME_H
2#define MIME_H
3/*=========================================================================*\
4* Core MIME support
5* LuaSocket toolkit
6*
7* This module provides functions to implement transfer content encodings
8* and formatting conforming to RFC 2045. It is used by mime.lua, which
9* provide a higher level interface to this functionality.
10\*=========================================================================*/
11#include "luasocket.h"
12
13/*-------------------------------------------------------------------------*\
14* Current MIME library version
15\*-------------------------------------------------------------------------*/
16#define MIME_VERSION "MIME 1.0.3"
17#define MIME_COPYRIGHT "Copyright (C) 2004-2013 Diego Nehab"
18#define MIME_AUTHORS "Diego Nehab"
19
20LUASOCKET_API int luaopen_mime_core(lua_State *L);
21
22#endif /* MIME_H */