summaryrefslogtreecommitdiff
path: root/usr.bin/telnet
AgeCommit message (Collapse)Author
2000-10-24When calling setupterm() pass in an int* for the error code soTodd C. Miller
it doesn't spew to stderr if the terminal type can't be found. Fix a logic thinko wrt terminaltypeok() -- it should return 0 on failure, not success.
2000-10-10Use curses, not ocurses and thus setupterm() not tgetent(). This meansTodd C. Miller
we no longer need to have a faked up telnet_setupterm(). Remove some unused variables and add missing err.h include in sys_bsd.c
2000-09-03Boring... Add :L modifier to all tweakable variables tests.Marc Espie
Closes PR 1246
2000-08-13recover 1.29 -> 1.30Jun-ichiro itojun Hagino
2000-08-13properly look at error code from getnameinfo(3)Jun-ichiro itojun Hagino
2000-08-13telnet -b broke when getaddrinfo conversion was done,Niklas Hallqvist
bind(2) was done on the dst addr instead of the src.
2000-08-02$HOME paranoia: never use getenv("HOME") w/o checking for NULL and non-zeroTodd C. Miller
2000-04-30If getaddrinfo() fails:Todd C. Miller
o Only call herror() if h_errno != 0 o if error == EAI_SERVICE say "bad port" since the generic error, "service not supported for ai_socktype" is incomprehensible to most users. o Use warnx(), not warn() since this is not a case where errno is likely to be relevant. Ok'd by Theo
2000-04-16- Remove reference to -S option; we don't have gettosbyname() and friends.Aaron Campbell
- Shrink SYNOPSIS a bit.
2000-04-15- For consistency, `super-user' -> `superuser' in all cases.Aaron Campbell
- Some punctuation fixes. - Some `id' -> `ID'.
2000-04-15Mostly punctuation fixes.Aaron Campbell
2000-03-23More pedantic man page formatting insanity, lalalaAaron Campbell
2000-03-11Various cleanups and standardizations.Aaron Campbell
2000-03-04In Unix land we prefer "whitespace" to "white space" or "white-space". AtAaron Campbell
least, this is the impression I get from looking at a lot of Perl docs.
2000-02-05show scopeid on "Trying foo...".Jun-ichiro itojun Hagino
2000-01-29remove #if 0'ed portion (not necessary due to use of getaddrinfo)Jun-ichiro itojun Hagino
1999-12-30avoid memory leak on realloc() failure.Jun-ichiro itojun Hagino
1999-12-20it looks perror("") has no effect in most cases.Jun-ichiro itojun Hagino
use strerror(errno) and format it on our own.
1999-12-15usage cleanupTheo de Raadt
1999-12-11Add a perror() in reporting failure to connect.Angelos D. Keromytis
1999-12-11IPv6/IPv4 dual stack support. uses getaddrinfo() and getnameinfo()Jun-ichiro itojun Hagino
throughout the code so please look at it with care (for auditing). XXX source routing is not available for IPv6 (even before I modify, it was not available for IPv4 anyways)
1999-12-07extra setuid calls go awayTheo de Raadt
1999-12-06oflowTheo de Raadt
1999-10-17More consistent introduction to options.Aaron Campbell
1999-09-23Typo fixes.Alex Feldman
1999-07-23Fix the case where telnet(1) would escape if in binary (-8) mode, even if theAaron Campbell
-E option (stop all characters from being recognized as an escape character) was specified, if it was passed a 0xFF character; from FreeBSD, millert@ ok
1999-07-20skey help; freebsdTheo de Raadt
1999-07-20mention the skey command and Xr skey(1)Aaron Campbell
1999-06-05- remove trailing white spaceAaron Campbell
- remove arguments from .Os macros - remove arguments from .Nm macros, where appropriate - some more Dq/Sq/Ql insanity - still lots to do in the usr.bin tree... :/
1999-05-07repair TIOCFLUSH use; alaric@MIT.EDUTheo de Raadt
1999-02-21note that the escape character brings you to command mode of the telnet processAaron Campbell
with the controlling terminal, and that the `send escape' command should be used to jump to command mode in subsequent telnet processes on remote hosts
1999-01-04spellingArtur Grabowski
1998-12-28handle oversize fd_setTheo de Raadt
1998-11-11remove redundant .Pp macrosAaron Campbell
1998-11-04be really pedantic about punctuation following -mdoc macro'd textAaron Campbell
1998-10-30usr.bin/ man page fixes, t-zAaron Campbell
1998-09-05more man page repairs; aaron@ug.cs.dal.caTheo de Raadt
1998-07-27don't include term.hTodd C. Miller
1998-07-27use ocurses since libtelnet has a getstr() function that conflicts with ncursesTodd C. Miller
1998-07-24-lcurses, not termcap/termlibTodd C. Miller
1998-07-16terminate nicerTheo de Raadt
1998-07-09use MAXHOSTNAMELENTheo de Raadt
1998-07-01delete unknown errorTheo de Raadt
1998-05-23fix multi-address host connects; cstone@pobox.comTheo de Raadt
print new address as it is tried; deraadt
1998-05-15cleanup warnings.Artur Grabowski
1998-05-15check mallocsArtur Grabowski
1998-04-07 - show usage for the encrypt command when there are no arguments.Artur Grabowski
- don't default to autologin and autoencrypt when kerberos is disabled.
1998-03-18fix connecting to ip-numbersArtur Grabowski
1998-03-12repair tn3270Theo de Raadt
1998-03-12encryption support from kth-krb 0.9.8 (kerberos only)Artur Grabowski
plus some tweaks for better binary/8-bit support.