From 83b7933f8a80e688579218450c4dbacc55c61309 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Fri, 12 Jan 2007 18:09:14 +0000 Subject: Damn it; my lovely resilient scheme falls down when you have a protocol that switches from line-oriented to byte-oriented partway through, such as HTTP. --- src/tests/linebuf_test.c | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'src/tests') diff --git a/src/tests/linebuf_test.c b/src/tests/linebuf_test.c index 9ddbb75a0..31ce808bf 100644 --- a/src/tests/linebuf_test.c +++ b/src/tests/linebuf_test.c @@ -5,8 +5,8 @@ static const char data1[] = "Hello world\r\n" -"This is a particularly mean set of lines\n" -"with a mixture of terminators\r\r\n" +"This is a reasonably nice set of lines\n" +"with not many different terminators\r\n\r\n" "There should be exactly one blank line above\n" "and this line should never appear at all since it has no terminator"; @@ -14,13 +14,18 @@ void linebuf_test ( void ) { struct line_buffer linebuf; const char *data = data1; size_t len = ( sizeof ( data1 ) - 1 /* be mean; strip the NUL */ ); - size_t buffered; + char *line; + int rc; memset ( &linebuf, 0, sizeof ( linebuf ) ); - while ( ( buffered = line_buffer ( &linebuf, data, len ) ) != len ) { - printf ( "\"%s\"\n", buffered_line ( &linebuf ) ); - data += buffered; - len -= buffered; + while ( len ) { + if ( ( rc = line_buffer ( &linebuf, &data, &len ) ) != 0 ) { + printf ( "line_buffer() failed: %s\n", + strerror ( rc ) ); + return; + } + if ( ( line = buffered_line ( &linebuf ) ) ) + printf ( "\"%s\"\n", line ); } empty_line_buffer ( &linebuf ); -- cgit v1.2.3-55-g7522