feat(lsm): start of library

This commit is contained in:
Jef Roosens 2023-10-12 10:06:20 +02:00 committed by Jef Roosens
parent 98a1f5f671
commit fd42b446a6
8 changed files with 314 additions and 1 deletions

View file

@ -27,7 +27,7 @@ int main() {
int port = atoi(port_str);
if (port <= 0 || port >= 2 << 16) {
if (port <= 0 || port >= 1 << 16) {
critical(1, "Invalid TCP port %s", port_str);
}