From cb2dba2c1257e0aa80edc9a171a9c5cd7b2822f8 Mon Sep 17 00:00:00 2001 From: Øyvind Harboe Date: Mon, 27 Sep 2010 09:24:51 +0200 Subject: server: read/write now goes through connection fn's MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit depending on whether the connection is over a socket or pipe, the read is done differently. pipes can return -1 when writing 0 bytes, make 0 byte writes a successful no-op. 0 byte writes falls out naturally of tcl server code. Signed-off-by: Øyvind Harboe --- src/server/server.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/server/server.h') diff --git a/src/server/server.h b/src/server/server.h index b13baaaa..46188bb4 100644 --- a/src/server/server.h +++ b/src/server/server.h @@ -83,6 +83,9 @@ int server_loop(struct command_context *command_context); int server_register_commands(struct command_context *context); +int connection_write(struct connection *connection, const void *data, int len); +int connection_read(struct connection *connection, void *data, int len); + /** * Used by server_loop(), defined in server_stubs.c, httpd.c, or ecosboard.c */ -- cgit v1.2.3