summaryrefslogtreecommitdiff
path: root/src/server/server.h
diff options
context:
space:
mode:
authorØyvind Harboe <oyvind.harboe@zylin.com>2010-09-27 09:24:51 +0200
committerØyvind Harboe <oyvind.harboe@zylin.com>2010-10-01 10:21:33 +0200
commitcb2dba2c1257e0aa80edc9a171a9c5cd7b2822f8 (patch)
tree437e9be13be7c6c6880a878da7acc7d1eb35b9a6 /src/server/server.h
parent5a41435e45ae18c0823780382c214fb7324dbe7d (diff)
downloadopenocd+libswd-cb2dba2c1257e0aa80edc9a171a9c5cd7b2822f8.tar.gz
openocd+libswd-cb2dba2c1257e0aa80edc9a171a9c5cd7b2822f8.tar.bz2
openocd+libswd-cb2dba2c1257e0aa80edc9a171a9c5cd7b2822f8.tar.xz
openocd+libswd-cb2dba2c1257e0aa80edc9a171a9c5cd7b2822f8.zip
server: read/write now goes through connection fn's
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 <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/server/server.h')
-rw-r--r--src/server/server.h3
1 files changed, 3 insertions, 0 deletions
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
*/