Module z_parse_multipart

Parse multipart/form-data request bodies.

Copyright © 2007 Mochi Media, Inc; 2009-2020 Marc Worrell

Authors: Bob Ippolito, Marc Worrell.

Description

Parse multipart/form-data request bodies. Uses a callback function to receive the next parts, can call a progress function to report back the progress on receiving the data.

Adapted from mochiweb_multipart.erl, integrated with webmachine and zotonic

Function Index

find_boundary/2Find the next boundary in the data.
recv_parse/1Receive and parse the form data in the request body.

Function Details

find_boundary/2

find_boundary(Prefix, Data) -> any()

Find the next boundary in the data

recv_parse/1

recv_parse(Context::z:context()) -> {#multipart_form{}, z:context()}

Receive and parse the form data in the request body. The progress function should accept the parameters [Percentage, Context]


Generated by EDoc