aboutsummaryrefslogtreecommitdiff
path: root/src/buffer.c
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2004-02-04 14:29:11 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2004-02-04 14:29:11 +0000
commit0b2542d1a61fc5425ff65ab3dbf7ba7de174763f (patch)
tree8a6188e11db0c9ef6891c31e8a1bebca050b23b2 /src/buffer.c
parentf67864f86c7d703325e86b14d0ba33992c52891b (diff)
downloadluasocket-0b2542d1a61fc5425ff65ab3dbf7ba7de174763f.tar.gz
luasocket-0b2542d1a61fc5425ff65ab3dbf7ba7de174763f.tar.bz2
luasocket-0b2542d1a61fc5425ff65ab3dbf7ba7de174763f.zip
Worked on the manual.
Implemented stuffing (needs test) Added cddb and qp examples.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index e6d4ce8..d9ba779 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -26,9 +26,10 @@ static int sendraw(p_buf buf, const char *data, size_t count, size_t *sent);
26/*-------------------------------------------------------------------------*\ 26/*-------------------------------------------------------------------------*\
27* Initializes module 27* Initializes module
28\*-------------------------------------------------------------------------*/ 28\*-------------------------------------------------------------------------*/
29void buf_open(lua_State *L) 29int buf_open(lua_State *L)
30{ 30{
31 (void) L; 31 (void) L;
32 return 0;
32} 33}
33 34
34/*-------------------------------------------------------------------------*\ 35/*-------------------------------------------------------------------------*\