summaryrefslogtreecommitdiffstats
path: root/nanohttp/nanohttp-stream.c
diff options
context:
space:
mode:
authorGravatar m0gg2006-11-30 14:23:58 +0000
committerGravatar m0gg2006-11-30 14:23:58 +0000
commitdf58dad240fe368c261263e248d3520d3e0be1a3 (patch)
tree3fe4e4f6c318aee4bce1b72e0827a8f3300f3b7b /nanohttp/nanohttp-stream.c
parentcbd1f84a6125931a2f64279aa5da5121a66e3cf1 (diff)
downloadcsoap-df58dad240fe368c261263e248d3520d3e0be1a3.tar.gz
csoap-df58dad240fe368c261263e248d3520d3e0be1a3.tar.bz2
Code cleanup
Diffstat (limited to 'nanohttp/nanohttp-stream.c')
-rwxr-xr-xnanohttp/nanohttp-stream.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/nanohttp/nanohttp-stream.c b/nanohttp/nanohttp-stream.c
index 59888d1..b121e57 100755
--- a/nanohttp/nanohttp-stream.c
+++ b/nanohttp/nanohttp-stream.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: nanohttp-stream.c,v 1.17 2006/11/25 15:06:58 m0gg Exp $
+* $Id: nanohttp-stream.c,v 1.18 2006/11/30 14:24:00 m0gg Exp $
*
* CSOAP Project: A http client/server library in C
* Copyright (C) 2003-2004 Ferhat Ayaz
@@ -570,19 +570,19 @@ http_output_stream_write(struct http_output_stream_t * stream,
if (stream->type == HTTP_TRANSFER_CHUNKED)
{
sprintf(chunked, "%x\r\n", size);
- if ((status = hsocket_send(stream->sock, chunked)) != H_OK)
+ if ((status = hsocket_send_string(stream->sock, chunked)) != H_OK)
return status;
}
if (size > 0)
{
- if ((status = hsocket_nsend(stream->sock, bytes, size)) != H_OK)
+ if ((status = hsocket_send(stream->sock, bytes, size)) != H_OK)
return status;
}
if (stream->type == HTTP_TRANSFER_CHUNKED)
{
- if ((status = hsocket_send(stream->sock, "\r\n")) != H_OK)
+ if ((status = hsocket_send_string(stream->sock, "\r\n")) != H_OK)
return status;
}
@@ -608,7 +608,7 @@ http_output_stream_flush(struct http_output_stream_t * stream)
if (stream->type == HTTP_TRANSFER_CHUNKED)
{
- if ((status = hsocket_send(stream->sock, "0\r\n\r\n")) != H_OK)
+ if ((status = hsocket_send_string(stream->sock, "0\r\n\r\n")) != H_OK)
return status;
}