view toynet.h @ 1070:16167a7c1b5a draft

Fix -t c0 and -J as reported by heehooman at gmail on the list. Also fix up help text, and hook up -c.
author Rob Landley <rob@landley.net>
date Mon, 16 Sep 2013 23:41:51 -0500
parents aca8323e2690
children
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 <arpa/inet.h>
#include <netdb.h>
#include <net/if.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <poll.h>
#include <sys/socket.h>
#include <sys/un.h>