summaryrefslogtreecommitdiff
path: root/source/luametatex/source/luacore/luasocket/src/unixdgram.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/luametatex/source/luacore/luasocket/src/unixdgram.h')
-rw-r--r--source/luametatex/source/luacore/luasocket/src/unixdgram.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/source/luametatex/source/luacore/luasocket/src/unixdgram.h b/source/luametatex/source/luacore/luasocket/src/unixdgram.h
new file mode 100644
index 000000000..a1a0166bd
--- /dev/null
+++ b/source/luametatex/source/luacore/luasocket/src/unixdgram.h
@@ -0,0 +1,28 @@
+#ifndef UNIXDGRAM_H
+#define UNIXDGRAM_H
+/*=========================================================================*\
+* DGRAM object
+* LuaSocket toolkit
+*
+* The dgram.h module provides LuaSocket with support for DGRAM protocol
+* (AF_INET, SOCK_DGRAM).
+*
+* Two classes are defined: connected and unconnected. DGRAM objects are
+* originally unconnected. They can be "connected" to a given address
+* with a call to the setpeername function. The same function can be used to
+* break the connection.
+\*=========================================================================*/
+
+#include "unix.h"
+
+#ifndef _WIN32
+#pragma GCC visibility push(hidden)
+#endif
+
+int unixdgram_open(lua_State *L);
+
+#ifndef _WIN32
+#pragma GCC visibility pop
+#endif
+
+#endif /* UNIXDGRAM_H */