summaryrefslogtreecommitdiff
path: root/res/res_http_post.c
diff options
context:
space:
mode:
authorPaul Belanger <paul.belanger@polybeacon.com>2011-05-16 14:38:16 +0000
committerPaul Belanger <paul.belanger@polybeacon.com>2011-05-16 14:38:16 +0000
commit938290cf0d7d9779113fe9059fae7f0f547a71d7 (patch)
tree8452b61049b34cf8033c40a5a2482242e2e77514 /res/res_http_post.c
parent9c73ece4068fb5a46e8bd3bb2beff41e7316cd0d (diff)
Merged revisions 319085 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r319085 | pabelanger | 2011-05-16 10:35:21 -0400 (Mon, 16 May 2011) | 10 lines Support gmime-2.4 (closes issue #18863) Reported by: tzafrir Patches: gmime-2.4-18.diff uploaded by tzafrir (license 46) Tested by: tzafrir Review: https://reviewboard.asterisk.org/r/1213/ ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@319086 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_http_post.c')
-rw-r--r--res/res_http_post.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/res/res_http_post.c b/res/res_http_post.c
index e2d93d340..0f2373730 100644
--- a/res/res_http_post.c
+++ b/res/res_http_post.c
@@ -52,6 +52,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#define MAX_PREFIX 80
+/* gmime 2.4 provides a newer interface. */
+#ifdef GMIME_TYPE_CONTENT_TYPE
+#define AST_GMIME_VER_24
+#endif
+
/* just a little structure to hold callback info for gmime */
struct mime_cbinfo {
int count;
@@ -84,7 +89,9 @@ static void post_raw(GMimePart *part, const char *post_dir, const char *fn)
g_mime_data_wrapper_write_to_stream(content, stream);
g_mime_stream_flush(stream);
+#ifndef AST_GMIME_VER_24
g_object_unref(content);
+#endif
g_object_unref(stream);
}
@@ -108,7 +115,11 @@ static GMimeMessage *parse_message(FILE *f)
return message;
}
+#ifdef AST_GMIME_VER_24
+static void process_message_callback(GMimeObject *parent, GMimeObject *part, gpointer user_data)
+#else
static void process_message_callback(GMimeObject *part, gpointer user_data)
+#endif
{
struct mime_cbinfo *cbinfo = user_data;
@@ -122,6 +133,7 @@ static void process_message_callback(GMimeObject *part, gpointer user_data)
ast_log(LOG_WARNING, "Got unexpected GMIME_IS_MESSAGE_PARTIAL\n");
return;
} else if (GMIME_IS_MULTIPART(part)) {
+#ifndef AST_GMIME_VER_24
GList *l;
ast_log(LOG_WARNING, "Got unexpected GMIME_IS_MULTIPART, trying to process subparts\n");
@@ -130,6 +142,9 @@ static void process_message_callback(GMimeObject *part, gpointer user_data)
process_message_callback(l->data, cbinfo);
l = l->next;
}
+#else
+ ast_log(LOG_WARNING, "Got unexpected MIME subpart.\n");
+#endif
} else if (GMIME_IS_PART(part)) {
const char *filename;
@@ -151,7 +166,11 @@ static int process_message(GMimeMessage *message, const char *post_dir)
.post_dir = post_dir,
};
+#ifdef AST_GMIME_VER_24
+ g_mime_message_foreach(message, process_message_callback, &cbinfo);
+#else
g_mime_message_foreach_part(message, process_message_callback, &cbinfo);
+#endif
return cbinfo.count;
}