1
0
mirror of https://github.com/lammertb/libhttp.git synced 2025-08-06 05:02:40 +03:00

Enhanced documentation and code quality

This commit is contained in:
Lammert Bies
2016-12-16 15:30:05 +01:00
parent 6e61f9d8c0
commit 260d6dee93
64 changed files with 1036 additions and 268 deletions

View File

@@ -249,7 +249,7 @@ field_get(const char *key, const char *value, size_t valuelen, void *user_data)
int
field_stored(const char *path, long long file_size, void *user_data)
field_stored(const char *path, int64_t file_size, void *user_data)
{
struct httplib_connection *conn = (struct httplib_connection *)user_data;
@@ -312,7 +312,7 @@ FileUploadForm(struct httplib_connection *conn, void *cbdata)
struct tfile_checksum {
char name[128];
unsigned long long length;
uint64_t length;
md5_state_t chksum;
};