static void uh_dispatch_done(struct client *cl)
{
- if (cl->dispatch_free)
- cl->dispatch_free(cl);
- cl->dispatch_free = NULL;
- cl->dispatch_close_fds = NULL;
+ if (cl->dispatch.free)
+ cl->dispatch.free(cl);
}
void uh_request_done(struct client *cl)
uh_chunk_eof(cl);
uh_dispatch_done(cl);
cl->us->notify_write = NULL;
- memset(&cl->data, 0, sizeof(cl->data));
+ memset(&cl->dispatch, 0, sizeof(cl->dispatch));
if (cl->request.version != UH_HTTP_VER_1_1 || !conf.http_keepalive) {
uh_connection_close(cl);
{
struct client *cl = container_of(s, struct client, sfd);
- if (cl->dispatch_write_cb)
- cl->dispatch_write_cb(cl);
+ if (cl->dispatch.write_cb)
+ cl->dispatch.write_cb(cl);
}
static void client_notify_state(struct ustream *s)
uh_close_listen_fds();
list_for_each_entry(cl, &clients, list) {
close(cl->sfd.fd.fd);
- if (cl->dispatch_close_fds)
- cl->dispatch_close_fds(cl);
+ if (cl->dispatch.close_fds)
+ cl->dispatch.close_fds(cl);
}
}
static char *uh_file_header(struct client *cl, int idx)
{
- if (!cl->data.file.hdr[idx])
+ if (!cl->dispatch.file.hdr[idx])
return NULL;
- return (char *) blobmsg_data(cl->data.file.hdr[idx]);
+ return (char *) blobmsg_data(cl->dispatch.file.hdr[idx]);
}
static void uh_file_response_ok_hdrs(struct client *cl, struct stat *s)
static void file_write_cb(struct client *cl)
{
char buf[512];
- int fd = cl->data.file.fd;
+ int fd = cl->dispatch.file.fd;
int r;
while (cl->us->w.data_bytes < 256) {
static void uh_file_free(struct client *cl)
{
- close(cl->data.file.fd);
+ close(cl->dispatch.file.fd);
}
static void uh_file_data(struct client *cl, struct path_info *pi, int fd)
return;
}
- cl->data.file.fd = fd;
- cl->dispatch_write_cb = file_write_cb;
- cl->dispatch_free = uh_file_free;
- cl->dispatch_close_fds = uh_file_free;
+ cl->dispatch.file.fd = fd;
+ cl->dispatch.write_cb = file_write_cb;
+ cl->dispatch.free = uh_file_free;
+ cl->dispatch.close_fds = uh_file_free;
file_write_cb(cl);
}
blobmsg_parse(hdr_policy, __HDR_MAX, tb, blob_data(cl->hdr.head), blob_len(cl->hdr.head));
- cl->data.file.hdr = tb;
+ cl->dispatch.file.hdr = tb;
if (!(pi->stat.st_mode & S_IROTH))
goto error;
if (!pi->redirected) {
uh_file_request(cl, pi, url);
- cl->data.file.hdr = NULL;
+ cl->dispatch.file.hdr = NULL;
}
return true;
struct blob_buf hdr;
- void (*dispatch_write_cb)(struct client *cl);
- void (*dispatch_close_fds)(struct client *cl);
- void (*dispatch_free)(struct client *cl);
-
- union {
- struct {
- struct blob_attr **hdr;
- int fd;
- } file;
- } data;
+ struct {
+ void (*write_cb)(struct client *cl);
+ void (*close_fds)(struct client *cl);
+ void (*free)(struct client *cl);
+ union {
+ struct {
+ struct blob_attr **hdr;
+ int fd;
+ } file;
+ };
+ } dispatch;
};
extern int n_clients;