aboutsummaryrefslogtreecommitdiff
path: root/src/tcp.h
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2005-10-07 04:40:59 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2005-10-07 04:40:59 +0000
commitf4dadea763c1959a27dead24df3ee6c54c209842 (patch)
treec13b294a8ca5438d59b60e3f5a25a4f7c1fc9a1b /src/tcp.h
parent562d8cceb704a96a7b2f9acc4bc229ab9f5c6541 (diff)
downloadluasocket-f4dadea763c1959a27dead24df3ee6c54c209842.tar.gz
luasocket-f4dadea763c1959a27dead24df3ee6c54c209842.tar.bz2
luasocket-f4dadea763c1959a27dead24df3ee6c54c209842.zip
Before compiling on Windows.
Diffstat (limited to 'src/tcp.h')
-rw-r--r--src/tcp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tcp.h b/src/tcp.h
index fe4fd8c..7e98ab6 100644
--- a/src/tcp.h
+++ b/src/tcp.h
@@ -23,10 +23,10 @@
23#include "socket.h" 23#include "socket.h"
24 24
25typedef struct t_tcp_ { 25typedef struct t_tcp_ {
26 t_sock sock; 26 t_socket sock;
27 t_io io; 27 t_io io;
28 t_buf buf; 28 t_buffer buf;
29 t_tm tm; 29 t_timeout tm;
30} t_tcp; 30} t_tcp;
31 31
32typedef t_tcp *p_tcp; 32typedef t_tcp *p_tcp;