summaryrefslogtreecommitdiff
path: root/ACE/ace/Codecs.h
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-12-20 15:41:33 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-12-20 15:41:33 +0000
commita57f49348942b632cfd66fa6c9787bfc97a68c65 (patch)
treecfda471d48ef502116c71beaa0e1584c0aee4e41 /ACE/ace/Codecs.h
parentfe7e1835df166ef6aaa6ac8a7cdf4ba6155141d7 (diff)
downloadATCD-a57f49348942b632cfd66fa6c9787bfc97a68c65.tar.gz
ChangeLogTag: Thu Dec 20 15:39:43 UTC 2007 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'ACE/ace/Codecs.h')
-rw-r--r--ACE/ace/Codecs.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ACE/ace/Codecs.h b/ACE/ace/Codecs.h
index c0916f724e3..f4bbf8c92bd 100644
--- a/ACE/ace/Codecs.h
+++ b/ACE/ace/Codecs.h
@@ -55,13 +55,15 @@ public:
* @param input Binary data in byte stream.
* @param input_len Length of the byte stream.
* @param output_len Length of the encoded Base64 byte stream.
+ * @param is_chunked If true, terminate 72 character blocks with newline
* @return Encoded Base64 data in byte stream or NULL if input data cannot
* be encoded.
*/
static ACE_Byte* encode (const ACE_Byte* input,
const size_t input_len,
- size_t* output_len);
+ size_t* output_len,
+ bool is_chunked = true);
/**
* Decodes a stream of Base64 to bytes data
*