aboutsummaryrefslogtreecommitdiff
path: root/toynet.h
blob: 2ecda6416f64454756e324869cd6b08dd282171b (plain)
1
2
3
4
5
6
7
8
9
// Included after toys.h, for network stuff.  Some build environments
// don't include network support, so we shouldn't include it unless we're
// going to build it.

#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <poll.h>