ref: 97b933150299e6a61b24d366c069c7b85f7a9927
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; }