Skip to content

Instantly share code, notes, and snippets.

@rsouth
rsouth / timeserver_server.c
Created June 5, 2021 09:21
untitled1.dev | timeserver | server.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <time.h>
#include <unistd.h>
/* child process, connection handler */
int handle_connection(int remote_sock_fd);
@rsouth
rsouth / build-qt-static-with-msvc.md
Last active August 10, 2024 23:08
Build a static version of Qt 5.15.0 with MSVC 2019.