This commit is contained in:
Nishi 2025-12-20 11:06:31 +09:00
commit 65c2ac8212
Signed by: nishi
GPG key ID: 27EF69B208EB9343
6 changed files with 56 additions and 6 deletions

View file

@ -1,4 +1,10 @@
#include <af_common.h>
int main(int argc, char** argv) {
fishsoup_server_t* server;
int port = 0;
server = fishsoup_server(port == 0 ? AF_DEFAULT_PORT : port);
fishsoup_server_loop(server);
}