annotate toynet.h @ 653:2986aa63a021

Move commands into "posix", "lsb", and "other" menus/directories.
author Rob Landley <rob@landley.net>
date Sat, 25 Aug 2012 14:25:22 -0500
parents e864c5ed1d25
children 4dcd5decb4fd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
190
e864c5ed1d25 Netcat needs this to build.
Rob Landley <rob@landley.net>
parents:
diff changeset
1 // Included after toys.h, for network stuff. Some build environments
e864c5ed1d25 Netcat needs this to build.
Rob Landley <rob@landley.net>
parents:
diff changeset
2 // don't include network support, so we shouldn't include it unless we're
e864c5ed1d25 Netcat needs this to build.
Rob Landley <rob@landley.net>
parents:
diff changeset
3 // going to build it.
e864c5ed1d25 Netcat needs this to build.
Rob Landley <rob@landley.net>
parents:
diff changeset
4
e864c5ed1d25 Netcat needs this to build.
Rob Landley <rob@landley.net>
parents:
diff changeset
5 #include <sys/socket.h>
e864c5ed1d25 Netcat needs this to build.
Rob Landley <rob@landley.net>
parents:
diff changeset
6 #include <netinet/in.h>
e864c5ed1d25 Netcat needs this to build.
Rob Landley <rob@landley.net>
parents:
diff changeset
7 #include <arpa/inet.h>
e864c5ed1d25 Netcat needs this to build.
Rob Landley <rob@landley.net>
parents:
diff changeset
8 #include <netdb.h>
e864c5ed1d25 Netcat needs this to build.
Rob Landley <rob@landley.net>
parents:
diff changeset
9 #include <poll.h>