view toynet.h @ 672:9d5959d6885d

Test tweaks. Set +x on two scripts (so they can be run standalone), fix chgrp so it doesn't abort test all.
author Rob Landley <rob@landley.net>
date Sun, 07 Oct 2012 22:57:27 -0500
parents e864c5ed1d25
children 4dcd5decb4fd
line wrap: on
line source

// 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>