Logcat: Set data-text-lines dissectors for log
[metze/wireshark/wip.git] / epan / tvbuff_base64.c
1 /* tvbuff_base64.c
2  * Base-64 tvbuff implementation (based on real tvb)
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or (at your option) any later version.
12  *
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.
17  *
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 #include "config.h"
24
25 #include <glib.h>
26
27 #include <epan/tvbuff.h>
28 #include <wsutil/base64.h>
29
30 tvbuff_t *
31 base64_to_tvb(tvbuff_t *parent, const char *base64)
32 {
33   tvbuff_t *tvb;
34   char *data = g_strdup(base64);
35   gint len;
36
37   len = (gint) ws_base64_decode_inplace(data);
38   tvb = tvb_new_child_real_data(parent, (const guint8 *)data, len, len);
39
40   tvb_set_free_cb(tvb, g_free);
41
42   return tvb;
43 }