hermes

HTTP GET/HEAD-only web server for static content.
git clone git://git.francescosaccone.com/hermes
Log | Files | Refs | README | LICENSE

DateCommit messageAuthorFiles+-
2025-04-01 13:34fix: add errno messages to print_error callsFrancesco Saccone1+9-4
2025-04-01 13:20fix: initialise sockaddr_in addressFrancesco Saccone1+1-0
2025-04-01 13:17fix: set option SO_REUSEADDR to created socketFrancesco Saccone1+10-1
2025-04-01 12:51feat: print_program_info before main loopFrancesco Saccone1+2-0
2025-04-01 12:49feat: add print_program_info function and VERSION macroFrancesco Saccone1+7-0
2025-04-01 12:44docs: add 'Documentation' sectionFrancesco Saccone1+5-0
2025-04-01 12:41docs: add 'Dependencies' sectionFrancesco Saccone1+7-0
2025-04-01 12:39docs: specify TLS is not supportedFrancesco Saccone1+2-0
2025-04-01 12:35docs: add 'Build and install' sectionFrancesco Saccone1+6-0
2025-04-01 12:31chore: add 'options' targetFrancesco Saccone1+7-1
2025-04-01 12:28build: add 'uninstall' targetFrancesco Saccone1+5-1
2025-04-01 12:27build: add 'install' targetFrancesco Saccone1+9-1
2025-04-01 11:46build: add 'all' targetFrancesco Saccone1+3-1
2025-04-01 11:46build: define PREFIX and MANPREFIXFrancesco Saccone1+3-0
2025-04-01 11:42chore: add man pageFrancesco Saccone1+44-0
2025-04-01 11:16feat: add even more mime_typesFrancesco Saccone1+62-3
2025-04-01 10:57fix: add final newline to text/plain response bodiesFrancesco Saccone1+2-2
2025-04-01 10:54style: wrap long linesFrancesco Saccone1+9-5
2025-04-01 10:41fix: add / to index path only when request is not '/'Francesco Saccone1+3-1
2025-04-01 10:36feat: if file is not readable, check for the directory indexFrancesco Saccone1+37-3
2025-04-01 10:01feat: write response and send to client in all casesFrancesco Saccone1+32-0
2025-04-01 09:59feat: define mime_typeFrancesco Saccone1+3-1
2025-04-01 09:59refactor: remove unused client_socket_sizeFrancesco Saccone1+0-3
2025-04-01 09:54fix: make extension and type not const in mime_types definitionFrancesco Saccone1+2-2
2025-04-01 09:52fix: also check if path is a regular file in is_file_readableFrancesco Saccone1+16-1
2025-04-01 09:35feat: add get_mime_type_from_extension functionFrancesco Saccone2+19-0
2025-04-01 09:26feat: define file_readable boolFrancesco Saccone1+3-1
2025-04-01 09:09feat: create register signal handlerFrancesco Saccone1+20-0
2025-04-01 09:05fix: drop privileges only after chrootingFrancesco Saccone1+12-12
2025-04-01 08:58feat: define file_extensionFrancesco Saccone1+3-1
2025-04-01 08:53feat: add get_file_extension functionFrancesco Saccone2+15-0
2025-04-01 08:51style: wrap long lines when considering tab 8 charactersFrancesco Saccone4+30-19
2025-04-01 08:45style: align comments in if statement more nicelyFrancesco Saccone1+3-3
2025-04-01 08:44feat: remove trailing slash when normalising pathsFrancesco Saccone1+2-1
2025-04-01 08:41docs: add explanation comments in if statementFrancesco Saccone1+3-2
2025-04-01 08:39feat: add get_file_name functionFrancesco Saccone2+21-0
2025-04-01 08:22refactor: move mine_types from http.h to file.hFrancesco Saccone2+25-25
2025-03-31 18:13docs: add brief comment to parse_http_requestFrancesco Saccone1+3-0
2025-03-31 18:12fix: set method to UNSUPPORTED instead of returning NULLFrancesco Saccone1+1-3
2025-03-31 18:11feat: add UNSUPPORTED http_request_methodFrancesco Saccone1+1-0
2025-03-31 18:03refactor: divide compose_http_response in ..._head and ..._fullFrancesco Saccone2+41-9
2025-03-31 17:51fix: add final newline to raw responseFrancesco Saccone1+1-1
2025-03-31 17:49fix: do not remove the length of template patterns from sizeFrancesco Saccone1+5-5
2025-03-31 17:41refactor: make compose_http_response actually return the stringFrancesco Saccone2+12-5
2025-03-31 17:27refactor: make struct http_response not need body_lengthFrancesco Saccone2+3-5
2025-03-31 17:18refactor: rewrite compose_http_response to not depend on buffer_sizeFrancesco Saccone2+46-16
2025-03-31 16:47style: remove empty lineFrancesco Saccone1+0-1
2025-03-31 16:44feat: add send_to_socket functionFrancesco Saccone2+17-0
2025-03-31 16:41feat: define client_socket_sizeFrancesco Saccone1+4-1
2025-03-31 16:38feat: add get_socket_size functionFrancesco Saccone2+19-0
2025-03-31 16:30style: define variable at start of blockFrancesco Saccone1+6-4
2025-03-31 16:28refactor: define and use macro REQUEST_BUFFER_MAX_LENGTHFrancesco Saccone1+5-4
2025-03-31 16:24refactor: rename 'buffer' to 'request_buffer'Francesco Saccone1+8-8
2025-03-31 16:21refactor: make compose_http_response use stack instead of heapFrancesco Saccone2+7-7
2025-03-31 16:19feat: define normalised_pathFrancesco Saccone1+5-1
2025-03-31 16:03feat: make get_file_content return struct file_contentFrancesco Saccone2+19-12
2025-03-31 15:56feat: define file_content structFrancesco Saccone1+5-0
2025-03-31 15:55feat: define get_file_content functionFrancesco Saccone2+41-0
2025-03-31 15:40feat: parse http request inside main loopFrancesco Saccone1+4-0
2025-03-31 15:38feat: add compose_http_response functionFrancesco Saccone2+25-0
2025-03-31 15:16feat: add get_normalised_path functionFrancesco Saccone2+36-0
2025-03-31 14:50build: add file.cFrancesco Saccone1+1-1
2025-03-31 14:27fix: do not return when bytes_received < buffer_sizeFrancesco Saccone1+0-1
2025-03-31 14:18refactor: rename file_exists to is_file_readableFrancesco Saccone2+2-2
2025-03-31 14:14fix: use 'char *' instead of 'const char *'Francesco Saccone2+2-2
2025-03-31 14:14fix: use 'access' function for file_existsFrancesco Saccone1+3-2
2025-03-31 14:06fix: drop privileges and chroot before the main loopFrancesco Saccone1+25-25
2025-03-31 14:05feat: chroot before reading client requestFrancesco Saccone1+16-0
2025-03-31 13:58fix: check if -d flag is setFrancesco Saccone1+8-1
2025-03-31 13:49feat: add -d flag for directory to server and chroot inFrancesco Saccone1+17-1
2025-03-31 13:45feat: drop privileges before reading client requestFrancesco Saccone1+11-0
2025-03-31 13:40build: rename hermes.c to main.cFrancesco Saccone2+1-1
2025-03-31 13:35fix: do not forkFrancesco Saccone1+16-29
2025-03-31 13:16style: remove unnecessary line break in commentFrancesco Saccone1+1-2
2025-03-31 13:16docs: specify accept_client return valuesFrancesco Saccone1+2-0
2025-03-31 13:14fix: use snprintf instead of strncpyFrancesco Saccone1+4-1
2025-03-31 13:07fix: only null terminate on buffer_size if bytes_received are moreFrancesco Saccone1+2-2
2025-03-31 13:05refactor: do port validation while the arguments are being parsedFrancesco Saccone1+4-5
2025-03-31 13:04fix: close the client socket if reading the request failsFrancesco Saccone1+1-0
2025-03-31 13:03fix: continue if reading the client request failsFrancesco Saccone1+1-0
2025-03-31 13:00fix: return 1 after any of the argument checking conditions failsFrancesco Saccone1+1-0
2025-03-31 12:59docs: specify return values of create_socketFrancesco Saccone1+2-0
2025-03-31 12:57docs: add missing punctuation and paragraph breaks to commentsFrancesco Saccone1+7-5
2025-03-31 12:56docs: reformat commentsFrancesco Saccone2+17-9
2025-03-31 12:55fix: return -1 instead of exit(1)Francesco Saccone1+3-3
2025-03-31 12:53feat: rename 'critical' to 'print_error' and do not run exit(1)Francesco Saccone4+21-23
2025-03-31 12:49fix: free buffer before ending the loop courseFrancesco Saccone1+8-1
2025-03-31 12:46fix: return status code of read_client_request functionFrancesco Saccone2+9-6
2025-03-31 12:42fix: check if client_socket_fd returns error codeFrancesco Saccone1+7-1
2025-03-31 12:38refactor: put boolean expression directly in if statementFrancesco Saccone1+1-2
2025-03-31 12:34refactor: merge if statements in a single oneFrancesco Saccone1+4-13
2025-03-31 12:32refactor: make if statement more explicitFrancesco Saccone1+1-2
2025-03-31 12:32fix: check if option letter is null characterFrancesco Saccone1+4-0
2025-03-31 12:23refactor: simplify 'fork' callFrancesco Saccone1+1-4
2025-03-31 12:22fix: close socket outside of 'fork' switchFrancesco Saccone1+2-10
2025-03-31 12:15fix: close socket at the end of each loop courseFrancesco Saccone1+2-0
2025-03-31 12:11fix: move main while loop inside child processFrancesco Saccone1+9-8
2025-03-31 12:09feat: in the termination process, close the server socketFrancesco Saccone1+3-0
2025-03-31 12:08style: add empty line after comment to avoid ambiguityFrancesco Saccone1+1-0
2025-03-31 12:07docs: split comments in specific linesFrancesco Saccone1+2-1
52 more commits remaining, fetch the repository