Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2009-01-13 21:19:33 +0000
committereutarass2009-01-13 21:19:33 +0000
commit7f82997dbcb23103b8252372012592bdfe5f1a30 (patch)
tree4b1a2fc109226039f0142874ea20ea27c69a3440 /channel.h
parent2495ca312b9b401f95da531741ecd518e08ac2ac (diff)
downloadorg.eclipse.tcf.agent-7f82997dbcb23103b8252372012592bdfe5f1a30.tar.gz
org.eclipse.tcf.agent-7f82997dbcb23103b8252372012592bdfe5f1a30.tar.xz
org.eclipse.tcf.agent-7f82997dbcb23103b8252372012592bdfe5f1a30.zip
Fixed: unsuccessful Locator.redirect returns wrong error code.
Fixed: infinite recursion in Java code when making a connection through TCF proxy. Fixed: some agent heart beat events were lost causing delays in UI update New commands in Precesses service: getSignalList, getSignalMask, setSignalMask
Diffstat (limited to 'channel.h')
-rw-r--r--channel.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/channel.h b/channel.h
index 5ca6cb34..756e8591 100644
--- a/channel.h
+++ b/channel.h
@@ -94,12 +94,14 @@ extern void add_channel_close_listener(ChannelCloseListener listener);
extern void notify_channel_closed(Channel *);
/*
- * Start TCF channel server
+ * Start TCF channel server.
+ * On error returns NULL and sets errno.
*/
extern ChannelServer * channel_server(PeerServer *);
/*
- * Connect to TCF channel server
+ * Connect to TCF channel server.
+ * On error returns NULL and sets errno.
*/
extern Channel * channel_connect(PeerServer *);

Back to the top