Subversion Repositories SvarDOS

Rev

Rev 341 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
339 mateuszvis 1
/*
2
 * unpacks a http "chunked" transfer into a raw data stream.
3
 * this file is part of the pkgnet tool from the SvarDOS project.
4
 *
5
 * Copyright (C) 2021 Mateusz Viste
6
 */
7
 
8
#ifndef UNCHUNK_H
9
#define UNCHUNK_H
10
 
11
/* transforms a http CHUNKED stream into actual data, returns the amount of raw data to read */
12
int unchunk(unsigned char *buff, int bufflen);
13
 
14
#endif