diff options
author | snowdrop | 2004-10-29 09:27:02 +0000 |
---|---|---|
committer | snowdrop | 2004-10-29 09:27:02 +0000 |
commit | 7b58a8fb0b95d6809fbe3e8c7dc7a05729b6c828 (patch) | |
tree | ebd31f5db83e2f94329dd25067cdc856feaf76f6 /libcsoap/soap-ctx.h | |
parent | d24d6ab7bbfda8e302af3a5cf8be62299d543c1a (diff) | |
download | csoap-7b58a8fb0b95d6809fbe3e8c7dc7a05729b6c828.tar.gz csoap-7b58a8fb0b95d6809fbe3e8c7dc7a05729b6c828.tar.bz2 |
added hoption feature
Diffstat (limited to 'libcsoap/soap-ctx.h')
-rwxr-xr-x | libcsoap/soap-ctx.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libcsoap/soap-ctx.h b/libcsoap/soap-ctx.h index 2ea107b..0aa8520 100755 --- a/libcsoap/soap-ctx.h +++ b/libcsoap/soap-ctx.h @@ -1,5 +1,5 @@ /******************************************************************
- * $Id: soap-ctx.h,v 1.2 2004/10/28 10:30:46 snowdrop Exp $
+ * $Id: soap-ctx.h,v 1.3 2004/10/29 09:27:05 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003-2004 Ferhat Ayaz
@@ -41,6 +41,10 @@ SoapCtx* soap_ctx_new(SoapEnv *env); /* should only be used internally */ /* Size of destination dest_href should be MAX_HREF_SIZE */
herror_t soap_ctx_add_file(SoapCtx* ctx, const char* filename, const char* content_type, char *dest_href);
+/*
+Used internally. Will switch the deleteOnExit flag from the
+given one to the added part.
+*/
void soap_ctx_add_files(SoapCtx* ctx, attachments_t *attachments);
void soap_ctx_free(SoapCtx* ctx);
|