cvsuser 03/10/11 00:09:44
Modified: io io_buf.c
Log:
Beginnings of a network API. Not compiled by default so as not to break
untested platforms yet. Set PARROT_NET_DEVEL to 1 in io/io_private.h
to play with it. Currently only a UNIX version, Win32 coming soon.
Revision Changes Path
1.17 +7 -2 parrot/io/io_buf.c
Index: io_buf.c
===================================================================
RCS file: /cvs/public/parrot/io/io_buf.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -w -r1.16 -r1.17
--- io_buf.c 10 Oct 2003 13:18:56 -0000 1.16
+++ io_buf.c 11 Oct 2003 07:09:44 -0000 1.17
@@ -1,7 +1,7 @@
/* io_buf.c
* Copyright: 2001-2003 The Perl Foundation. All Rights Reserved.
* CVS Info
- * $Id: io_buf.c,v 1.16 2003/10/10 13:18:56 boemmels Exp $
+ * $Id: io_buf.c,v 1.17 2003/10/11 07:09:44 mrjoltcola Exp $
* Overview:
* The "buf" layer of Parrot IO. Buffering and all the fun stuff.
*
@@ -500,7 +500,12 @@
PIO_buf_setlinebuf,
PIO_null_getcount,
PIO_null_fill,
- PIO_null_eof
+ PIO_null_eof,
+ 0, /* no poll */
+ 0, /* no socket */
+ 0, /* no connect */
+ 0, /* no send */
+ 0 /* no recv */
};