tvb: Improve documentation of base64_to_tvb.

Change-Id: I90a4290b893f25c543429cc08bf24af57a15e65b
Reviewed-on: https://code.wireshark.org/review/34265
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Anders Broman 2019-08-13 10:35:55 +02:00 committed by Anders Broman
parent 2a32808e50
commit 2cf962b8a3
1 changed files with 7 additions and 1 deletions

View File

@ -996,7 +996,13 @@ WS_DLL_PUBLIC tvbuff_t *tvb_child_uncompress_lznt1(tvbuff_t *parent,
/* From tvbuff_base64.c */
/** Return a tvb that contains the binary representation of a base64
* string
* string as a child of the indicated tvb.
*
* @param tvb The parent tvbuff.
* @param base64 The base64 encoded string which binary representation will be
* returned in the child tvb.
*
* @return A tvb with the binary representation of the base64 decoded string.
*/
extern tvbuff_t* base64_to_tvb(tvbuff_t *parent, const char *base64);