| /mOS-networking-stack/samples/lighttpd-1.4.32/src/ |
| H A D | chunk.h | 48 } chunkqueue; typedef 50 chunkqueue *chunkqueue_init(void); 58 buffer * chunkqueue_get_append_buffer(chunkqueue *c); 59 buffer * chunkqueue_get_prepend_buffer(chunkqueue *c); 60 chunk * chunkqueue_get_append_tempfile(chunkqueue *cq); 62 int chunkqueue_remove_finished_chunks(chunkqueue *cq); 64 off_t chunkqueue_length(chunkqueue *c); 65 off_t chunkqueue_written(chunkqueue *c); 66 void chunkqueue_free(chunkqueue *c); 67 void chunkqueue_reset(chunkqueue *c); [all …]
|
| H A D | chunk.c | 21 chunkqueue *chunkqueue_init(void) { in chunkqueue_init() 22 chunkqueue *cq; in chunkqueue_init() 79 void chunkqueue_free(chunkqueue *cq) { in chunkqueue_free() 140 void chunkqueue_reset(chunkqueue *cq) { in chunkqueue_reset() 242 buffer * chunkqueue_get_prepend_buffer(chunkqueue *cq) { in chunkqueue_get_prepend_buffer() 256 buffer *chunkqueue_get_append_buffer(chunkqueue *cq) { in chunkqueue_get_append_buffer() 278 chunk *chunkqueue_get_append_tempfile(chunkqueue *cq) { in chunkqueue_get_append_tempfile() 323 off_t chunkqueue_length(chunkqueue *cq) { in chunkqueue_length() 343 off_t chunkqueue_written(chunkqueue *cq) { in chunkqueue_written() 361 int chunkqueue_is_empty(chunkqueue *cq) { in chunkqueue_is_empty() [all …]
|
| H A D | network_backends.h | 62 int network_write_chunkqueue_write(server *srv, connection *con, int fd, chunkqueue *cq, off_t max_… 63 int network_write_chunkqueue_writev(server *srv, connection *con, int fd, chunkqueue *cq, off_t max… 64 int network_write_chunkqueue_linuxsendfile(server *srv, connection *con, int fd, chunkqueue *cq, of… 65 int network_write_chunkqueue_freebsdsendfile(server *srv, connection *con, int fd, chunkqueue *cq, … 66 int network_write_chunkqueue_solarissendfilev(server *srv, connection *con, int fd, chunkqueue *cq,… 67 int network_write_chunkqueue_mtcp_writev(server *srv, connection *con, int fd, chunkqueue *cq, off_… 69 int network_write_chunkqueue_openssl(server *srv, connection *con, SSL *ssl, chunkqueue *cq, off_t …
|
| H A D | http_chunk.c | 55 chunkqueue *cq; in http_chunk_append_file() 75 chunkqueue *cq; in http_chunk_append_buffer() 95 chunkqueue *cq; in http_chunk_append_mem()
|
| H A D | base.h | 393 …chunkqueue *write_queue; /* a large queue for low-level write ( HTTP response ) [ file, mem ]… 394 chunkqueue *read_queue; /* a small queue for low-level read ( HTTP request ) [ mem ] */ 395 …chunkqueue *request_content_queue; /* takes request-content into tempfile if necessary [ tempfile,… 663 …int (* network_backend_write)(struct server *srv, connection *con, int fd, chunkqueue *cq, off_t m… 665 …int (* network_ssl_backend_write)(struct server *srv, connection *con, SSL *ssl, chunkqueue *cq, o…
|
| H A D | network.h | 6 int network_write_chunkqueue(server *srv, connection *con, chunkqueue *c, off_t max_bytes);
|
| H A D | network_write.c | 27 int network_write_chunkqueue_write(server *srv, connection *con, int fd, chunkqueue *cq, off_t max_… in network_write_chunkqueue_write()
|
| H A D | network_freebsd_sendfile.c | 34 int network_write_chunkqueue_freebsdsendfile(server *srv, connection *con, int fd, chunkqueue *cq, … in network_write_chunkqueue_freebsdsendfile()
|
| H A D | network_solaris_sendfilev.c | 41 int network_write_chunkqueue_solarissendfilev(server *srv, connection *con, int fd, chunkqueue *cq,… in network_write_chunkqueue_solarissendfilev()
|
| H A D | network_mtcp_writev.c | 32 network_write_chunkqueue_mtcp_writev(server *srv, connection *con, int fd, chunkqueue *cq, off_t ma… 346 int network_write_chunkqueue_mtcp_writev(server *srv, connection *con, int fd, chunkqueue *cq, off_… in network_write_chunkqueue_mtcp_writev()
|
| H A D | network_openssl.c | 30 int network_write_chunkqueue_openssl(server *srv, connection *con, SSL *ssl, chunkqueue *cq, off_t … in network_write_chunkqueue_openssl()
|
| H A D | network_linux_sendfile.c | 30 int network_write_chunkqueue_linuxsendfile(server *srv, connection *con, int fd, chunkqueue *cq, of… in network_write_chunkqueue_linuxsendfile()
|
| H A D | network_writev.c | 33 int network_write_chunkqueue_writev(server *srv, connection *con, int fd, chunkqueue *cq, off_t max… in network_write_chunkqueue_writev()
|
| H A D | mod_proxy.c | 102 chunkqueue *wb; 491 chunkqueue *req_cq = con->request_content_queue; in proxy_create_env()
|
| H A D | connections.c | 916 chunkqueue *cq = con->read_queue; 917 chunkqueue *dst_cq = con->request_content_queue;
|
| H A D | network.c | 996 network_write_chunkqueue(server *srv, connection *con, chunkqueue *cq, off_t max_bytes) {
|
| H A D | mod_fastcgi.c | 350 chunkqueue *rb; /* read queue */ 351 chunkqueue *wb; /* write queue */ 2051 chunkqueue *req_cq = con->request_content_queue; in fcgi_create_env()
|
| H A D | mod_webdav.c | 990 static int webdav_parse_chunkqueue(server *srv, connection *con, plugin_data *p, chunkqueue *cq, xm… in webdav_parse_chunkqueue() 1612 chunkqueue *cq = con->request_content_queue; in URIHANDLER_FUNC()
|
| H A D | mod_scgi.c | 310 chunkqueue *wb; 1634 chunkqueue *req_cq = con->request_content_queue; in scgi_create_env()
|
| H A D | mod_cgi.c | 1077 chunkqueue *cq = con->request_content_queue; in cgi_create_env()
|