aboutsummaryrefslogtreecommitdiff
path: root/src/buffer.h
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2004-07-02 18:44:05 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2004-07-02 18:44:05 +0000
commitb1a4ad2b1996936744c679e6ae563986ff701a3a (patch)
treec446d3bf2fe5bb0452027ee93388e505c2dfa53d /src/buffer.h
parent63807d647624df155a81a2b323f370e2c36192f6 (diff)
downloadluasocket-b1a4ad2b1996936744c679e6ae563986ff701a3a.tar.gz
luasocket-b1a4ad2b1996936744c679e6ae563986ff701a3a.tar.bz2
luasocket-b1a4ad2b1996936744c679e6ae563986ff701a3a.zip
Compiles and runs on windows.
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 3ea2648..3cc885f 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -28,7 +28,7 @@
28/* buffer control structure */ 28/* buffer control structure */
29typedef struct t_buf_ { 29typedef struct t_buf_ {
30 double birthday; /* throttle support info: creation time, */ 30 double birthday; /* throttle support info: creation time, */
31 int sent, received; /* bytes sent, and bytes received */ 31 size_t sent, received; /* bytes sent, and bytes received */
32 p_io io; /* IO driver used for this buffer */ 32 p_io io; /* IO driver used for this buffer */
33 p_tm tm; /* timeout management for this buffer */ 33 p_tm tm; /* timeout management for this buffer */
34 size_t first, last; /* index of first and last bytes of stored data */ 34 size_t first, last; /* index of first and last bytes of stored data */