diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2006-03-13 07:16:39 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2006-03-13 07:16:39 +0000 |
commit | 6248b915cba040a3d04fedd100637e1465a43cc7 (patch) | |
tree | d87bde69c65934524b2102f47ac48cf28897bf80 /src/unix.h | |
parent | 00e74c304c7aa917fffd1e5b7adedfa05727333c (diff) | |
download | luasocket-6248b915cba040a3d04fedd100637e1465a43cc7.tar.gz luasocket-6248b915cba040a3d04fedd100637e1465a43cc7.tar.bz2 luasocket-6248b915cba040a3d04fedd100637e1465a43cc7.zip |
Fixing bugs...
Diffstat (limited to 'src/unix.h')
-rw-r--r-- | src/unix.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -16,10 +16,10 @@ | |||
16 | #include "socket.h" | 16 | #include "socket.h" |
17 | 17 | ||
18 | typedef struct t_unix_ { | 18 | typedef 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; |
24 | typedef t_unix *p_unix; | 24 | typedef t_unix *p_unix; |
25 | 25 | ||