aboutsummaryrefslogtreecommitdiff
path: root/src/unixdgram.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/unixdgram.h')
-rw-r--r--src/unixdgram.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/unixdgram.h b/src/unixdgram.h
new file mode 100644
index 0000000..7187966
--- /dev/null
+++ b/src/unixdgram.h
@@ -0,0 +1,20 @@
1#ifndef UNIXDGRAM_H
2#define UNIXDGRAM_H
3/*=========================================================================*\
4* DGRAM object
5* LuaSocket toolkit
6*
7* The dgram.h module provides LuaSocket with support for DGRAM protocol
8* (AF_INET, SOCK_DGRAM).
9*
10* Two classes are defined: connected and unconnected. DGRAM objects are
11* originally unconnected. They can be "connected" to a given address
12* with a call to the setpeername function. The same function can be used to
13* break the connection.
14\*=========================================================================*/
15
16#include "unix.h"
17
18int unixdgram_open(lua_State *L);
19
20#endif /* UNIXDGRAM_H */