aboutsummaryrefslogtreecommitdiff
path: root/src/io.h
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2004-01-17 08:02:04 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2004-01-17 08:02:04 +0000
commit02ef4e7daae6bef629dcb568052755fb85ed2efc (patch)
tree3001b5d4429626e086b457ade7a899428fbfeb34 /src/io.h
parent076451c75336b30e6152bd5c02f355db39107f7d (diff)
downloadluasocket-02ef4e7daae6bef629dcb568052755fb85ed2efc.tar.gz
luasocket-02ef4e7daae6bef629dcb568052755fb85ed2efc.tar.bz2
luasocket-02ef4e7daae6bef629dcb568052755fb85ed2efc.zip
Trying to get rid of EINTR problems...
Diffstat (limited to 'src/io.h')
-rw-r--r--src/io.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/io.h b/src/io.h
index f56094a..33675d8 100644
--- a/src/io.h
+++ b/src/io.h
@@ -24,6 +24,7 @@ enum {
24 IO_CLOSED, /* the connection has been closed */ 24 IO_CLOSED, /* the connection has been closed */
25 IO_ERROR, /* something wrong... */ 25 IO_ERROR, /* something wrong... */
26 IO_REFUSED, /* transfer has been refused */ 26 IO_REFUSED, /* transfer has been refused */
27 IO_RETRY, /* please try again */
27 IO_LIMITED /* maximum number of bytes reached */ 28 IO_LIMITED /* maximum number of bytes reached */
28}; 29};
29 30