summaryrefslogtreecommitdiff
path: root/httpd.c (unfollow)
Commit message (Expand)AuthorFilesLines
2023-04-09OAuth login now works.Gravatar default1-0/+3
2023-04-08More mastoapi work.Gravatar default1-0/+3
2023-04-08Added some OAuth scaffold code.Gravatar default1-0/+4
2023-04-08New file mastoapi.c.Gravatar default1-0/+4
2023-04-04More log level tweaks.Gravatar default1-1/+1
2023-03-02Added the url to srv_archive().Gravatar default1-1/+1
2023-03-02Connection jobs are treated as urgent.Gravatar default1-6/+10
2023-02-22Create sleep mutex and cond variable only once.Gravatar default1-5/+10
2023-02-22Close everything if xs_socket_accept() returns NULL.Gravatar default1-3/+6
2023-02-22Deleted useless code.Gravatar default1-1/+0
2023-02-22Don't wait for 3 seconds if there were some q_items processed.Gravatar default1-11/+24
2023-02-14Try to show a piece of the error after connecting.Gravatar default1-1/+1
2023-02-11Don't fail silently if the job fifo is not ready.Gravatar default1-0/+7
2023-02-10Move the #fds log line to dbglevel 0.Gravatar default1-1/+1
2023-02-10Show (dbglevel 1) the number of file descriptors available.Gravatar default1-1/+2
2023-02-10Show the fd rlimit at httpd startup.Gravatar default1-0/+7
2023-02-10Added more job_fifo concurrency protections.Gravatar default1-2/+6
2023-02-10Fixed 32bit arch warnings when passing the thread id.Gravatar default1-5/+6
2023-02-09The number of threads can be forced from the config file.Gravatar default1-2/+6
2023-02-07Debug level tweaks.Gravatar default1-3/+3
2023-02-07New function send_to_inbox_raw().Gravatar default1-3/+3
2023-02-07Changed some debug levels.Gravatar default1-3/+3
2023-02-06The pool of threads now process q_items.Gravatar default1-75/+65
2023-02-06Identify the job threads by number.Gravatar default1-6/+6
2023-02-06Incoming connections are processed by the pool of threads.Gravatar default1-15/+13
2023-02-06More thread work.Gravatar default1-8/+47
2023-02-06Simplified job_post() and job_wait().Gravatar default1-42/+13
2023-02-06New functions job_post() and job_wait() (untested).Gravatar default1-1/+85
2023-02-06Started work towards the pool of threads.Gravatar default1-7/+27
2023-02-06Input connections cannot be non-threaded.Gravatar default1-14/+8
2023-02-02Email notifications have been moved to the global queue.Gravatar default1-0/+3
2023-02-02process_queue() has been renamed to process_user_queue().Gravatar default1-1/+1
2023-01-27New function default_avatar_base64().Gravatar default1-9/+1
2023-01-17Updated year in copyright notices.Gravatar default1-1/+1
2023-01-12Backport from xs.Gravatar default1-2/+2
2022-12-13In server_get_handler(), body must be a dynamic string.Gravatar default1-2/+2
2022-12-12Serve robots.txt (disallow all)Gravatar Alex Schroeder1-0/+7
2022-12-10Call pthread_detach() and spawning the purge.Gravatar default1-0/+1
2022-12-08Added support for /.well-known/nodeinfo.Gravatar default1-0/+36
2022-12-04Handle /favicon.icoGravatar Alex Schroeder1-1/+1
2022-11-26purge_server() deletes using object_del().Gravatar default1-1/+1
2022-11-18Serve the root and susie even if the query does not have an Accept header.Gravatar default1-4/+0
2022-11-09Call pthread_detach().Gravatar default1-0/+1
2022-10-25Some code moving to avoid false positive leaks.Gravatar default1-14/+15
2022-10-24Don't load unneeded actor info in html_entry().Gravatar default1-8/+8
2022-10-17New thread for purge.Gravatar default1-0/+29
2022-10-16Added support for HEAD methods.Gravatar default1-2/+9
2022-10-16Replace %host% in greeting.html.Gravatar default1-0/+3
2022-10-14Add the user agent to httpd start log line.Gravatar default1-1/+1
2022-10-13The waiting of the queue thread is done in a more appropriate way.Gravatar default1-1/+11