summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-client.c
diff options
context:
space:
mode:
authorGravatar snowdrop2004-11-01 15:16:22 +0000
committerGravatar snowdrop2004-11-01 15:16:22 +0000
commitc28397f760d22a1e8be126725ff7784b2d8fec23 (patch)
treed1d09522031049fda25d5d98deb9a6aa6b7bcfc7 /libcsoap/soap-client.c
parent581c961c5b8e511a89addca064f372103d2400ee (diff)
downloadcsoap-c28397f760d22a1e8be126725ff7784b2d8fec23.tar.gz
csoap-c28397f760d22a1e8be126725ff7784b2d8fec23.tar.bz2
added soap_ctx_add_file()
Diffstat (limited to 'libcsoap/soap-client.c')
-rw-r--r--libcsoap/soap-client.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/libcsoap/soap-client.c b/libcsoap/soap-client.c
index 160b255..21eb06a 100644
--- a/libcsoap/soap-client.c
+++ b/libcsoap/soap-client.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-client.c,v 1.11 2004/10/29 09:27:05 snowdrop Exp $
+* $Id: soap-client.c,v 1.12 2004/11/01 15:16:26 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -251,14 +251,3 @@ herror_t
}
-herror_t soap_client_ctx_new(const char *urn, const char *method, SoapCtx **out)
-{
- SoapEnv *env;
- herror_t err;
- err = soap_env_new_with_method(urn, method, &env);
- if (err != H_OK) return err;
- *out = soap_ctx_new(env);
-
- return H_OK;
-}
-