aboutsummaryrefslogtreecommitdiff
path: root/src/udp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/udp.h')
-rw-r--r--src/udp.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/udp.h b/src/udp.h
index be9b6a5..9e80ccd 100644
--- a/src/udp.h
+++ b/src/udp.h
@@ -12,7 +12,7 @@
12* with a call to the setpeername function. The same function can be used to 12* with a call to the setpeername function. The same function can be used to
13* break the connection. 13* break the connection.
14\*=========================================================================*/ 14\*=========================================================================*/
15#include "lua.h" 15#include "luasocket.h"
16 16
17#include "timeout.h" 17#include "timeout.h"
18#include "socket.h" 18#include "socket.h"
@@ -26,6 +26,10 @@ typedef struct t_udp_ {
26} t_udp; 26} t_udp;
27typedef t_udp *p_udp; 27typedef t_udp *p_udp;
28 28
29#pragma GCC visibility push(hidden)
30
29int udp_open(lua_State *L); 31int udp_open(lua_State *L);
30 32
33#pragma GCC visibility pop
34
31#endif /* UDP_H */ 35#endif /* UDP_H */