mirror of
https://github.com/sheumann/DiskBrowser.git
synced 2024-10-31 09:15:14 +00:00
1e1977bc0f
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.
11 lines
213 B
C
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 |