ref: 0011a76b4d111760c93669573c8671398bd214b4
dir: /sys/src/ape/lib/net/hangup.c/
#include <stdlib.h> #include <sys/types.h> #include <string.h> #include <fcntl.h> #include <stdio.h> #include <unistd.h> #include <libnet.h> /* * force a connection to hangup */ int hangup(int ctl) { return write(ctl, "hangup", sizeof("hangup")-1) != sizeof("hangup")-1; }