DiskBrowser/http.h
Stephen Heumann 1e1977bc0f HTTP tweaks and test program.
I switched to using HTTP/1.0 for now to prevent the server from sending chunked transfer-encoding, which this code currently doesn't support.
2019-04-13 12:57:35 -05:00

11 lines
213 B
C

#ifndef HTTP_H
#define HTTP_H
#include <types.h>
#include "session.h"
#include "netdiskerror.h"
Boolean BuildHTTPRequest(Session *sess, char *resourceStr);
enum NetDiskError DoHTTPRequest(Session *sess);
#endif