add file comments

This commit is contained in:
Nayan
2025-05-08 22:34:36 -04:00
parent 51fe7e1c8d
commit f060c35f7d
12 changed files with 105 additions and 1 deletions

View File

@@ -1,3 +1,13 @@
/*
* client_handler.c
*
* Handles a single client connection. Meant to be run in a separate thread.
*
* This function is designed to be run in a separate thread. It will receive
* requests from the client until the client disconnects, at which point it will
* return.
*/
#include "client_handler.h"
#include "request_handler.h"