aboutsummaryrefslogtreecommitdiff
path: root/src/unix.h
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2006-03-13 07:16:39 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2006-03-13 07:16:39 +0000
commit6248b915cba040a3d04fedd100637e1465a43cc7 (patch)
treed87bde69c65934524b2102f47ac48cf28897bf80 /src/unix.h
parent00e74c304c7aa917fffd1e5b7adedfa05727333c (diff)
downloadluasocket-6248b915cba040a3d04fedd100637e1465a43cc7.tar.gz
luasocket-6248b915cba040a3d04fedd100637e1465a43cc7.tar.bz2
luasocket-6248b915cba040a3d04fedd100637e1465a43cc7.zip
Fixing bugs...
Diffstat (limited to 'src/unix.h')
-rw-r--r--src/unix.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/unix.h b/src/unix.h
index 60b00fe..055b02b 100644
--- a/src/unix.h
+++ b/src/unix.h
@@ -16,10 +16,10 @@
16#include "socket.h" 16#include "socket.h"
17 17
18typedef struct t_unix_ { 18typedef struct t_unix_ {
19 t_sock sock; 19 t_socket sock;
20 t_io io; 20 t_io io;
21 t_buf buf; 21 t_buffer buf;
22 t_tm tm; 22 t_timeout tm;
23} t_unix; 23} t_unix;
24typedef t_unix *p_unix; 24typedef t_unix *p_unix;
25 25