remove dependency on arpa/telnet.h

This commit is contained in:
Damien Miller 2015-04-16 11:40:20 +10:00
parent 202d443eed
commit 673a1c16ad
1 changed files with 7 additions and 1 deletions

View File

@ -42,7 +42,6 @@
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <netinet/ip.h>
#include <arpa/telnet.h>
#include <errno.h>
#include <netdb.h>
@ -63,6 +62,13 @@
# endif
#endif
/* Telnet options from arpa/telnet.h */
#define IAC 255
#define DONT 254
#define DO 253
#define WONT 252
#define WILL 251
#ifndef SUN_LEN
#define SUN_LEN(su) \
(sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path))