aboutsummaryrefslogtreecommitdiff
path: root/server.h
Commit message (Collapse)AuthorAgeFilesLines
* Move header files to subdirectoryXavier Del Campo Romero2023-07-211-15/+0
| | | | | | | | | | | Since slweb is meant as a library, it is advisable to keep public header files under their own directory in order to avoid name clashing i.e., #include "something.h" Now becomes: #include "slweb/something.h"
* Replace select(2) with poll(2)Xavier Del Campo Romero2023-07-201-1/+1
| | | | | | select(2) has a number of well-known issues (e.g.: FD_SETSIZE limiting the maximum amount of file descriptors to watch) that are mostly solved by poll(2) and thus can be used as a drop-in replacement.
* Initial commitXavier Del Campo Romero2023-07-201-0/+15