GNU libmicrohttpd 0.9.77
|
implementation of MHD_action_process_upload() More...
#include "internal.h"
Go to the source code of this file.
Functions | |
static enum MHD_StatusCode | upload_action (void *cls, struct MHD_Request *request) |
const struct MHD_Action * | MHD_action_process_upload (MHD_UploadCallback uc, void *uc_cls) |
implementation of MHD_action_process_upload()
Definition in file action_process_upload.c.
const struct MHD_Action * MHD_action_process_upload | ( | MHD_UploadCallback | uc, |
void * | uc_cls | ||
) |
Create an action that handles an upload.
uc | function to call with uploaded data |
uc_cls | closure for uc |
Definition at line 77 of file action_process_upload.c.
References NULL, and upload_action().
|
static |
The application wants to process uploaded data for the given request. Do it!
cls | the struct UploadAction with the function we are to call for upload data |
request | the request for which we are to process upload data |
Definition at line 57 of file action_process_upload.c.
Referenced by MHD_action_process_upload().