Overview
Comment: | Added basic support for HTTP requests |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4bbee8f60722729c6a6d0ad3fad8f7ee |
User & Date: | rkeene on 2014-02-04 10:18:40 |
Other Links: | manifest | tags |
Context
2014-02-04
| ||
11:51 | Added more log messages and support for error pages check-in: 70ecb45a61 user: rkeene tags: trunk | |
10:18 | Added basic support for HTTP requests check-in: 4bbee8f607 user: rkeene tags: trunk | |
09:53 | Added basic support for HTTP responses check-in: 7dfe29c1bc user: rkeene tags: trunk | |
Changes
Modified filed.c from [a1927fba4d] to [0f86783dca].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | + | #include <sys/sendfile.h> #include <sys/socket.h> #include <sys/types.h> #include <arpa/inet.h> #include <sys/mman.h> #include <sys/stat.h> #include <pthread.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <fcntl.h> #include <stdio.h> /* Default values */ #define MAX_FAILURE_COUNT 30 #define PORT 8080 #define THREAD_COUNT 10 |
︙ | |||
94 95 96 97 98 99 100 101 102 | 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + | buffer->type = "text/plain"; buffer->lastmod = "Now"; return(buffer); } static char *filed_get_http_request(FILE *fp, char *buffer, size_t buffer_len) { char *method, *path, *version; char tmpbuf[1010]; int i; setlinebuf(fp); fgets(buffer, buffer_len, fp); |
︙ | |||
125 126 127 128 129 130 131 132 133 134 135 136 137 138 | 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | + | close(fd); return; } path = filed_get_http_request(fp, path_b, sizeof(path_b)); if (path == NULL) { /* XXX: TODO: Return error page */ fclose(fp); return; } fileinfo = filed_open_file(path, &fileinfo_b); if (fileinfo == NULL) { |
︙ |