2018-02-04 20:27:33 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2020-08-28 21:46:12 +00:00
|
|
|
#ifndef DATA_H
|
|
|
|
#define DATA_H
|
2018-02-04 20:27:33 +00:00
|
|
|
|
|
|
|
#include "http.h"
|
|
|
|
|
2020-08-28 21:46:12 +00:00
|
|
|
enum status data_send_dirlisting(int, const struct response *);
|
2020-08-28 22:42:54 +00:00
|
|
|
enum status data_send_error(int, const struct response *);
|
2020-08-28 21:46:12 +00:00
|
|
|
enum status data_send_file(int, const struct response *);
|
2018-02-04 20:27:33 +00:00
|
|
|
|
2020-08-28 21:46:12 +00:00
|
|
|
#endif /* DATA_H */
|