DiskBrowser/http.h
Stephen Heumann c237bd661f Add utility code for HTTP connections, URLs, and networking.
This is adapted from NetDisk with minor changes.
2019-04-12 23:23:39 -05:00

11 lines
253 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, unsigned long start, unsigned long end);
#endif