diff options
Diffstat (limited to 'regress/netcat.c')
-rw-r--r-- | regress/netcat.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/regress/netcat.c b/regress/netcat.c index 1a9fc8730..6234ba019 100644 --- a/regress/netcat.c +++ b/regress/netcat.c | |||
@@ -42,7 +42,6 @@ | |||
42 | #include <netinet/in.h> | 42 | #include <netinet/in.h> |
43 | #include <netinet/tcp.h> | 43 | #include <netinet/tcp.h> |
44 | #include <netinet/ip.h> | 44 | #include <netinet/ip.h> |
45 | #include <arpa/telnet.h> | ||
46 | 45 | ||
47 | #include <errno.h> | 46 | #include <errno.h> |
48 | #include <netdb.h> | 47 | #include <netdb.h> |
@@ -63,6 +62,13 @@ | |||
63 | # endif | 62 | # endif |
64 | #endif | 63 | #endif |
65 | 64 | ||
65 | /* Telnet options from arpa/telnet.h */ | ||
66 | #define IAC 255 | ||
67 | #define DONT 254 | ||
68 | #define DO 253 | ||
69 | #define WONT 252 | ||
70 | #define WILL 251 | ||
71 | |||
66 | #ifndef SUN_LEN | 72 | #ifndef SUN_LEN |
67 | #define SUN_LEN(su) \ | 73 | #define SUN_LEN(su) \ |
68 | (sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path)) | 74 | (sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path)) |