summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-client.h
diff options
context:
space:
mode:
authorGravatar snowdrop2004-10-20 14:17:36 +0000
committerGravatar snowdrop2004-10-20 14:17:36 +0000
commitebde083c541b5d202014c41450a3519f4d08e3c9 (patch)
tree29657c5212ad3b2badbbeea2ac56920d857ad68f /libcsoap/soap-client.h
parent69bc2627a1cd365583190f7da0cbb0d8ee40b3bd (diff)
downloadcsoap-ebde083c541b5d202014c41450a3519f4d08e3c9.tar.gz
csoap-ebde083c541b5d202014c41450a3519f4d08e3c9.tar.bz2
optimized for visualc 6
Diffstat (limited to 'libcsoap/soap-client.h')
-rw-r--r--libcsoap/soap-client.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/libcsoap/soap-client.h b/libcsoap/soap-client.h
index 439a96d..6820c14 100644
--- a/libcsoap/soap-client.h
+++ b/libcsoap/soap-client.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: soap-client.h,v 1.4 2004/10/15 13:33:13 snowdrop Exp $
+ * $Id: soap-client.h,v 1.5 2004/10/20 14:17:36 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -52,6 +52,17 @@ SoapCtx* soap_client_invoke(SoapCtx *ctx,
SoapCtx *soap_client_ctx_new(const char *urn, const char *method);
+/**
+ Sets the underlaying socket to use while connecting
+ into block mode or not block mode.
+ The default mode is always non-blocking mode.
+
+ @param block 1 to creat blocked sockets, 0 to create non
+ blocking sockets.
+*/
+void soap_client_block_socket(int block);
+int soap_client_get_blockmode();
+
#endif