diff options
author | Greg Hudson <ghudson@mit.edu> | 2009-11-22 14:58:54 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2009-11-22 14:58:54 +0000 |
commit | 14590b7c281e1fbf68afec2f3f4104b87e6010f4 (patch) | |
tree | e3f6c44278d9a69c45fbabd4b93146a99aa29244 /src/appl/telnet/telnetd/termio-tn.c | |
parent | 829462f1ae36623021b57a03aa1e4e6bb2dfbb6d (diff) | |
download | krb5-14590b7c281e1fbf68afec2f3f4104b87e6010f4.tar.gz krb5-14590b7c281e1fbf68afec2f3f4104b87e6010f4.tar.xz krb5-14590b7c281e1fbf68afec2f3f4104b87e6010f4.zip |
Unbundle applications into separate repository
Remove libpty, gssftp, telnet, and the bsd applications from the
source tree, build system, and tests.
Docs still need to be updated to remove mentions of the applications.
The build system should be simplified now that we're down to one
configure script and don't need some of the functionality currently in
aclocal.m4.
ticket: 6583
status: open
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23305 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/appl/telnet/telnetd/termio-tn.c')
-rw-r--r-- | src/appl/telnet/telnetd/termio-tn.c | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/appl/telnet/telnetd/termio-tn.c b/src/appl/telnet/telnetd/termio-tn.c deleted file mode 100644 index 8f27d59d3b..0000000000 --- a/src/appl/telnet/telnetd/termio-tn.c +++ /dev/null @@ -1,36 +0,0 @@ -/* handle having mutually exclusive termio vs. termios */ -/* return 0 if handled */ -#ifdef STREAMSPTY -#include <sys/types.h> -#include <sys/stream.h> -#include <sys/ioctl.h> -#include <termio.h> - -#include "defs.h" -#include "ext.h" - -int readstream_termio(cmd, ibuf, vstop, vstart, ixon) - int cmd; - char *ibuf; - char *vstop, *vstart; - int *ixon; -{ - struct termio *tp; - switch (cmd) { - case TCSETA: - case TCSETAW: - case TCSETAF: - tp = (struct termio *) (ibuf+1 + sizeof(struct iocblk)); -#if 0 /* VSTOP/VSTART only in termios!? */ - *vstop = tp->c_cc[VSTOP]; - *vstart = tp->c_cc[VSTART]; -#endif - *ixon = tp->c_iflag & IXON; - return 0; - } - return -1; -} - -#else -int silence_warnings_about_empty_source_file_termio = 42; -#endif /* STREAMSPTY */ |