Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Borovikov <git-no-replydmitry@zabbix.com>2010-03-19 12:42:58 +0300
committerDmitry Borovikov <git-no-replydmitry@zabbix.com>2010-03-19 12:42:58 +0300
commit327ce05f82301199176f9c21c6c5b924ed20b8f6 (patch)
tree604941f05b916c67c2b891b3a98e5a0fae9a31c5 /include/base64.h
parent6e4ad3f6c8019f60bd8107496f051fa1d96df75b (diff)
- [ZBX-2011] fixed e-mail sending format to meet 'SMTP/MIME e-mail' standards since UTF-8 is used. Thanks to Olexiy Zagorskiy. (Dmitry)
[Merging revisions 10934-10935 of svn://svn.zabbix.com/branches/1.8]
Diffstat (limited to 'include/base64.h')
-rw-r--r--include/base64.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/base64.h b/include/base64.h
index fc0234cd55a..9c037393339 100644
--- a/include/base64.h
+++ b/include/base64.h
@@ -21,6 +21,7 @@
#define ZABBIX_BASE64_H
void str_base64_encode(const char *p_str, char *p_b64str, int in_size);
+void str_base64_encode_dyn(const char *p_str, char **p_b64str, int in_size);
void str_base64_decode(const char *p_b64str, char *p_str, int maxsize, int *p_out_size);
#endif /* ZABBIX_BASE64_H */