mingw: compiled with gcc4.4
[siplcs.git] / src / core / sipe-mime.c
blob9d7abdd4581647bff4c7e84221648effdb510059
1 /**
2 * @file sipe-mime.c
4 * pidgin-sipe
6 * Copyright (C) 2010 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "glib.h"
25 #include "mime.h"
27 #include "sipe-mime.h"
29 void sipe_mime_parts_foreach(const gchar *type,
30 const gchar *body,
31 sipe_mime_parts_cb callback,
32 gpointer user_data)
34 gchar *doc = g_strdup_printf("Content-Type: %s\r\n\r\n%s", type, body);
35 PurpleMimeDocument *mime = purple_mime_document_parse(doc);
37 if (mime) {
38 GList* parts = purple_mime_document_get_parts(mime);
40 while (parts) {
41 const gchar *content_type = purple_mime_part_get_field(parts->data,
42 "Content-Type");
43 if (content_type) {
44 const gchar *content = purple_mime_part_get_data(parts->data);
45 gsize length = purple_mime_part_get_length(parts->data);
47 (*callback)(user_data, content_type, content, length);
49 parts = parts->next;
51 purple_mime_document_free(mime);
53 g_free(doc);
57 Local Variables:
58 mode: c
59 c-file-style: "bsd"
60 indent-tabs-mode: t
61 tab-width: 8
62 End: